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.
我有一个 Web 服务器,它的会话状态存储在 Sql Server 中。我需要更改超时以使用外部时间源。我该怎么做?
好吧,做到这一点并不难。我想您可以从表中读取该数据-正如您所说,与某些用户首选项相关-并将这些数据放入一个 int 中:
int myTimeout = [... read from DB];
在登录过程完成后(甚至在过程中)添加这一行就足够了:
Session.Timeout = myTimeout;
注意:超时以分钟为单位。