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?
I found that Session["Int"] will be 100. I set the session timeout to just 1 minute and put a break point in that event.