Explain how to access ViewState value of this page in the next page.
2750
24-Aug-2011
Anonymous User
24-Aug-2011Page poster = this.PreviousPage;
Once that is done, a control can be found from the previous page and its state can be read.
Label posterLabel = poster.findControl("myLabel");
string lbl = posterLabel.Text;