如何确定 Asp.Net 会话长度
SessionState 超时值可以通过 web.config 配置
<sessionstate
timeout="x"/>
我的问题是:如何通过代码确定 SessionState 超时长度是多少?
The SessionState time out value can be configured via the web.config
<sessionstate
timeout="x"/>
My question is: how can I determine through code, what the SessionState timeout length is?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您应该能够使用 HttpSessionState.Timeout
You should be able to get or set that value using HttpSessionState.Timeout