If I store a value in a session variable
Session["Int"] = 100;
What it will be in the Session_End event? Will it be null or 100?
void Session_End(object sender, EventArgs e)
{
object objInt = Session["Int"]; // Null or 100 ?
}
Meaning, will Session_End fire after disposing everything in the session or just before?