...Why would you want to store an entire PAGE in session? >< That will crush your server preformance and really isn't practicle.
Only store the value you need in session so, for example, the value from your dropdown might look like this:
Session.Add("dropDown",Convert.ToString(dropdown.S electedItem.Value));
Then to read that value on another page you might do:
int iValue = Convert.ToInt32(Session["dropDown"]);
hth.
================================================== =========
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
================================================== =========