Sample ImageI have a listview in which a div has an image, a wishlist button and a add to cart button. When i click on wishlist the text does not change in listview_itemcode event. Below is code;
<asp:ListView ID="usrListShowImages" runat="server" OnItemCommand="usrListShowImages_ItemCommand">
<LayoutTemplate>
<table id="MainTablePlaceHolder" style="border:20px Orange; width:100%;" >
<tr style="border:5px orange;">
</tr>
<tr runat="server" id="itemPlaceHolder" style="border:2px Orange" />
</table>
</LayoutTemplate>
<ItemTemplate>
<tr>
<asp:UpdatePanel runat="server" UpdateMode="Conditional" ChildrenAsTriggers="false">
<ContentTemplate>
<asp:HyperLink ID="hypLink" NavigateUrl="http://www.google.com" runat="server" >
<div class="wishlist">
<div class="growuser picUserShow">
<asp:Image ID="userShowImgz" ClientIDMode="Static"
ImageUrl='<%# ".." + Eval("ItemsPicUrl") %>' runat="server" />
</asp:HyperLink>
<div class="bottomDiv">
<asp:Button ID="btnWhishlist" Text="Wishlist" runat="server" CssClass="wishlistButton" CommandName="btnWhishlist" UseSubmitBehavior="false" />
</div>
</div>
</div>
<%-- <asp:Label ID="lblShow" runat="server" Text="Label"></asp:Label>--%>
</ContentTemplate>
</asp:UpdatePanel>
</tr>
</ItemTemplate>
Any help would be highly appreciated