Page level (user defined) properties?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi,

Why doesn’t this property work at the Page level after postback;

public virtual string SomePageProperty
{
get
{
string s = (string) ViewState["SomePageProperty"];
return ((s == null) ? String.Empty : s);
}

set
{
ViewState["SomePageProperty"] = value;
}
}


I've used this type of property declaration in custom WebControls before but
cannot see why it would not work at the Page level, seeing as Page inherits
from Control??


Thanks,
 
OK,

Please ignore this silly question as I was debugging in the OnInit event and
hence ViewState had not been restored!! I must get more sleep!! ;-)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top