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 ...