If I have an asp.net page based on a viewpage, if I populate the viewstate in the page, is that value available in the master page? Or are they treated as two seperate collections?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Master pages and content pages do not share the same
ViewState. If you need to pass information between these, you can use theSessionobject,Context.Itemsor create properties on the Master Page and access these.