Posted on: 11/22/2014 1:43:08 PM | Views : 461

hi
i have a listview that fill on code behind by innerHtml Property .
one field of this listview is ImageButton that i need send some value of that row by clicking on it but it dont work
its my asp code:
<asp:ListView ID="LvSearch" runat="server" OnItemDataBound="LvSearch_ItemDataBound" OnPagePropertiesChanged="LvSearch_PagePropertiesChanged" OnSorting="LvSearch_Sorting" DataKeyNames="code" OnItemCommand="LvSearch_ItemCommand"> <ItemTemplate> <div> <div class="SearchResaultItemTiltle"> <span> <asp:Label ID="LblProductCode" Text='<%# Eval("code") %>' runat="server" /> </span>&nbsp;&nbsp;:&nbsp; <asp:Label ID="LblLatin_Name" Text='<%# Eval(" ...

Go to the complete details ...