T
Tony
Hello!
The reason I can't write Page.ViewState must depend on that ViewState
property is defined as protected so
must be accessed from a class that is derive from the Page class.
The normal way to access ViewState from within the Default class below is to
write
this.ViewState or just ViewState.
Is my understanding correct ?
public partial class Default : System.Web.UI.Page
//Tony
The reason I can't write Page.ViewState must depend on that ViewState
property is defined as protected so
must be accessed from a class that is derive from the Page class.
The normal way to access ViewState from within the Default class below is to
write
this.ViewState or just ViewState.
Is my understanding correct ?
public partial class Default : System.Web.UI.Page
//Tony