Posted on: 12/1/2014 9:09:55 PM | Views : 486

Hi,
I'm very new to asp.net.
I have 2 pages a.aspx and b.aspx.
On a.aspx I have a simple html form.
On b.aspx I do some basic processing on the post variables.
Everything works as expected, except if I refresh b.aspx after the form post (pressing F5 in browser), I loose all the form post variables.
In past experience working with cold fusion and php the browser usually resubmits the form post data.

a.aspx
----------------------------------------------------------
<form name="test" method="post" action="b.aspx">
<input type="text" name="box1">
<input type="submit">
</form>

b.aspx
---------------------------------------------------
<%response.write(Request.Form(Go to the complete details ...