I ma trying to figure out what is the issue here.. when i disable Viewstate for usercontrol inside my updatepanel, its just not updating the content.
here is my code:
if i set Page ViewState-true its working fine but its does not hide it when i need it .
<asp:UpdatePanel ID="CheckoutUpdatePanel" runat="server" UpdateMode="Conditional">
<ContentTemplate>
<uc:ClickAndCollect ID="ClickAndCollectPanel" runat="server" Visible="false" EnableViewState="false" />
</ContentTemplate>
</asp:UpdatePanel>
======================
My User Control
My UserControl is also wrapped inside updatePanel..
--: it does not have any effect of ViewState even if i disable it. Its just working fine on other page
please help.
Thanks, Milan P