Asp.net updatepanel , section of the page flickers -
i have 2 link buttons inside updatepanel. problem 1 section of page flickers when either of linkbuttons clicked.
<asp:scriptmanager id="scriptmanager1" runat="server" ajaxframeworkmode="enabled" /> <asp:updatepanel id="updatepanel1" runat="server"> <contenttemplate> <ul class="nav nav-tabs" role="tablist"> <li id="licc" runat="server" class="active"> <asp:linkbutton id="hlcc" runat="server" onclick="hlcc_click" postbackurl="#"><span class="number">1</span>credit card</asp:linkbutton></li> <li id="ligc" runat="server"> <asp:linkbutton id="hlgc" runat="server" onclick="hlgc_click" postbackurl="#"><span class="number">2</span> movie gift card</asp:linkbutton></li> </ul> </contenttemplate> </asp:updatepanel> there no triggers. can sombody tell me why 1 portion of screen flickering , not other portions?
thanks
Comments
Post a Comment