Session Expire if i'm not in idle asp.net
I'm getting a problem with session. When I'm not idle and开发者_如何学C still using webpage the session expires.
If you havent set, the default session timeout is 20 mts. Also it will increment by its own if you are referring or using the session variables.
Are you sure that you are the using session variables during your non-idle time?
If you are using InProc session state it could be that the application domain is being recycled. This could be due to any number of things, see this question:
What causes an application pool in IIS to recycle?
精彩评论