in first page,
[HTML]<form id="form1" runat="server" action="page2.a spx">
<TEXTAREA id="txt1" runat=server></TEXTAREA>
<INPUT type=submit value=submit name=rev_submit >[/HTML]
in second page(c#)
In this way, data can be posted to second page. But I found when the first page is posted back, the content in browser is still that of first page, not second page.
How to jump to page2.aspx, while using the data in fomr1 posted back ?
[HTML]<form id="form1" runat="server" action="page2.a spx">
<TEXTAREA id="txt1" runat=server></TEXTAREA>
<INPUT type=submit value=submit name=rev_submit >[/HTML]
in second page(c#)
Code:
string str = Request.Form["txt1"];
How to jump to page2.aspx, while using the data in fomr1 posted back ?
Comment