I have been using session variables in my asp.net application for passing the next property:
[DefaultValue(true)]
public bool IsModificationMode
{
get
{
return (bool)Session["ModificationMode"];
}
set { Session["ModificationMode"] = value; }
}
In the PageLoad, I set it's value.
Now after the Postback, I am losing it's value having a a NullReferenceException