Dear all,
now am using one linkbutton and one href link using in gridview. one linkbutton using download files and another href link using redirect another site.
run the page showing in any one linkbutton in the page how.
<asp:GridView ID="GridVideofile" runat="server" AutoGenerateColumns="false" Width="647px"
CssClass="GV" onrowdatabound="GridVideofile_RowDataBound"
ShowHeader="False">
<FooterStyle CssClass="Gv-Footer" />
<HeaderStyle CssClass="Gv-HRow" />
<PagerStyle CssClass="Gv-Pager" />
<RowStyle CssClass="Gv-Row" />
<SelectedRowStyle CssClass="Gv-SRow" />
<Columns>
<asp:TemplateField>
<ItemTemplate>
<table>
<tr>
<td>
No of Views :
<%#Eval("ViewCount")%>
</td>
</tr>
<tr>
<td>
Download Video File :
<asp:LinkButton ID="LinkButton1" runat="server" onclick="LinkButton1_Click">Download File</asp:LinkButton>
</td>
</tr>
<tr>
<td>
Url Video File :
<a href='<%#Eval("Url") %>' target="_blank"><%#Eval("Url")%></a>
</td>
</tr>
<tr>
<td>
Video Image :
<asp:Image ID="imgVimg" runat="server" ImageUrl=' <%#Eval("Image")%>' Width="150px" Height="150px" />
</td>
</tr>
</table>
</ItemTemplate>
</asp:TemplateField>
</Columns>
</asp:GridView>
Advance Thanks to all
chandru