jeff
jeff

Reputation: 446

Classic ASP sliding expiration

Just a query; Is the classic ASP do have sliding expiration like forms auth in asp.net?

Upvotes: 2

Views: 313

Answers (1)

AardVark71
AardVark71

Reputation: 4126

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

Upvotes: 2

Related Questions