Use a session value or a querystring value.
Session:
Page1
Session.Add("text", textBox1.Text);
Page2
textBox2.Text = Convert.ToString(Session["text"]);
Querystring
Page1
Response.Redirect("page2.aspx?text=" + textBox1.Text);
Page2
textBox2.Text = Convert.ToString(Request.QueryString("text"));
================================================== =========
Read this if you want to know how to get a correct reply for your question:
http://www.catb.org/~esr/faqs/smart-questions.html
^^Took that from planoie's profile^^
^^Modified text taken from gbianchi profile^^
================================================== =========
Technical Editor for:
Professional Search Engine Optimization with ASP.NET
http://www.wiley.com/WileyCDA/WileyT...470131470.html
================================================== =========
Why can't Programmers, program??
http://www.codinghorror.com/blog/archives/000781.html
================================================== =========