2

只是一个查询;经典的 ASP 是否像 asp.net 中的表单身份验证那样具有滑动到期?

4

1 回答 1

2

No, there is no such thing as a property to expire form based authentication in classic asp.

Authentication in classic asp can be roughly divided in windows challenge/response and form-based authentication (often in combination with a database-driven username /password). You could use the session expiration as an alternative (for instance if the form-based authentication sets a a session value "isAuthenticated"). The default session timeout is 20 minutes, but this can be easily altered by adjusting Session.Timeout

于 2012-09-24T08:11:07.133 回答