hi, i hava a updatepanel with a imagebutton. When i click at the image my table is refreshing without any lag.
But i want some real round images, så i replaced my imagebutton with a div and a post back. This i resulting in a lag everytime i click on the div, i think all my images being reloaded and that the reason for the lag.
<asp:UpdatePanel runat="server">
<ContentTemplate>
<asp:DataList runat="server" ID="productCategory" RepeatColumns="4" RepeatDirection="Horizontal" RepeatLayout="Table" style="margin-left:10px">
<ItemTemplate>
<div class="circle" onclick="ProductCategoryClick('<%#Container.DataItem("HashTag")%>')" style="background-image: url(<%#"http://" ...
Go to the complete details ...