First, IsCrossPagePostBack is a .NET 2.0 feature and does not work in 1.X.
To place data in session you do something like:
Session.Add("value", textBox1.Text);
(Use this method on Page 1)
to reference the session value
Convert.ToString(Session["value"]);
(Use this method on page 2)
================================================== =========
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
================================================== =========