Imagine I have a property defined in global.asax.
public List<string> Roles
{
get
{
...
}
set
{
...
}
}
I want to use the value in another page. how to I refer to it?
You can access the class like this:
((Global)this.Context.ApplicationInstance).Roles