heyy
ive a Datalist
i need to loop through it and get a value from label vislabel and assign it to label2
i t work fine but for the last row i ve no idea wats is the problem
<asp:DataList ID="DataList1" runat="server" DataSourceID="SqlDataSource1">
<ItemTemplate>
table_id:
<asp:Label ID="table_idLabel" runat="server" Text='<%# Eval("table_id") %>' />
<br />
vis:
<asp:Label ID="visLabel" runat="server" Text='<%# Eval("vis") %>' />
<br />
<asp:Label ID="Label2" runat="server" Text="Label"></asp:Label>
<br />
<asp:Image ID="Image1" runat=" ...
Go to the complete details ...