Click to See Complete Forum and Search --> : post : how can I get its value in the new webpage


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?