NEWBIE - Autologout is too short

R

RockNRoll

Greetings,

I have an asp.net application on our server that access program financial
data. If a user does not click anything for a certain amount of time and
then clicks on, say, a new tab, the application returns to the login page.

I like this functionality, but I would like that time to be longer.

Does anybody know where to address that setting? Thank you kindly,

-Dave
 
G

Greg Burns

You make changes like that in your web.config.

If you are using Forms authentication you can add a timeout attribute to the
<forms> element and set the number of minutes (the default is 30).

<authenication mode="Forms">
<forms loginUrl="login.aspx" timeout="30" />
</authentication>

HTH,
Greg
 
H

Hermit Dave

look into
A. Web.config file
B. the login code

check the duration of session (in web.config) and the validity of the ticket
& cookie (if you are using forms authentication)

--

Regards,

Hermit Dave
(http://hdave.blogspot.com)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
474,436
Messages
2,571,696
Members
48,796
Latest member
Greg L.
Top