I have two pages, Page1 and Page2. On page1, I have a checkbox below it an update panel and few controls in update panel such as radio button and combo boxex. This is my client side.
<asp:checkbox><asp:checkbox>
</br>
<asp:UpdatePanel ID="UpdatePanel1" runat="server">
<ContentTemplate>
<div id="div1" runat="server">
<asp:Panel ID="pnl1" runat="server"
</div>
</Panel>
</ContentTemplate>
</UpdatePanel>
</br>
<asp:Button></Button>
When user checks the checkbox(which is outside the update panel), the pnl1 gets visble and when unchecked, pnl1 gets invisible. The checkbox is checked. Now When I click a button which is on page1, it redirects to page2. Now I am on page2 and I hit back button to go on page1. When I go on page1, I want to see the checkbox checked. I am using Mozilla. Could anybody tell me please,how can I achieve this.
your input is much appreciated. Thank you.
Session
value to set the check box. Which you would need to set or unset when the checkbox is clicked which could be done using AJAX or some other form, Another way would just be to append it to the url query however this may not, probably not, be the best way. - Nomad101