asp.net values of Session variables in Session_End event

后端 未结 2 1476
清歌不尽
清歌不尽 2021-01-12 06:14

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?

2条回答
  •  北荒
    北荒 (楼主)
    2021-01-12 07:00

    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.

提交回复
热议问题