giladasaf
December 7th, 2002, 02:55 PM
when I want to send a string from aspx to another I use the following code
form action="http://nextPage.aspx" id="Form1" method="post"
INPUT type="text" name="x"
INPUT type="submit" value="Submit"
/form
and I got the x in another form using TextBox1.Text=Request.Form.Get("x");
How can I send and get the x in the asp.net environment?
form action="http://nextPage.aspx" id="Form1" method="post"
INPUT type="text" name="x"
INPUT type="submit" value="Submit"
/form
and I got the x in another form using TextBox1.Text=Request.Form.Get("x");
How can I send and get the x in the asp.net environment?