In what state is the previous form returned when I hit the Back button?
In Form1 I have a LinkButton that does the folowing:
Hyperlink1.Visible = False
Textbox1.text = ""
Textbox2.text = ""
Response.Redirect("Form2.aspx")
When I hit the Back button in Form2 Form1 is returned with Hyperlink1 visible and the Textboxes with the original values. How can I get Form1 to return as I left it?
In Form1 I have a LinkButton that does the folowing:
Hyperlink1.Visible = False
Textbox1.text = ""
Textbox2.text = ""
Response.Redirect("Form2.aspx")
When I hit the Back button in Form2 Form1 is returned with Hyperlink1 visible and the Textboxes with the original values. How can I get Form1 to return as I left it?