Posted on: 12/9/2013 2:05:16 AM | Views : 710

hii want to get NameLabel content  after click LinkButton1 on listview and display the value in lblname label ...
 
<asp:ListView ID="ListView1" runat="server" DataKeyNames="coid" DataSourceID="SqlDataSource1"> <ItemTemplate> <tr style=""> <td> <asp:Label ID="coidLabel" runat="server" Text='<%# Eval("coid") %>' /> </td> <td> <asp:Label ID="NameLabel" runat="server" Text='<%# Eval("Name") %>' /> </td> ...

Go to the complete details ...