Explain how to access ViewState value of this page in the next page.
Ask by Anonymous User
Updated 15 Sep 2020
Page 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;