Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
再会,
我有一个网站,我想通过定时会话在其中实现登录,即当我登录时,n 分钟后会话应该过期。
顺便说一句,我正在使用 ASP.NET 和 C#。
我的问题是如何做到这一点?InProc 会话对我的情况有帮助吗?
提前致谢...
你可以使用上面的
<configuration> <system.web> <sessionState timeout="20"></sessionState> </system.web> </configuration>