Link to home
Start Free TrialLog in
Avatar of qualityacube
qualityacube

asked on

Session Timeouts

I have a huge web application that basically lives on the session of a customer id. And it takes a user almost 2 hrs to complete his work if he sits continuously at the terminal.

If he idles for about 20 mins..drinking a cup of coffee or he is over the phone...the session would time out.

But my application decides to insert null values of customer id into the db and thereby invoking primary key and foreign key constraint errors which have been imposed to avoid

1. for null
2. duplication
3. child tables can get the data only if the related key is a primary key in the main table..

Now I want this user to be not to be able to conitnue and be thrown to the mainpage and if he logs in again my code will anyway take him to the page where he left of as that is being already handled.

I also want the user to know that his session has timedout. How do I let the user know.
Please note that I am using basic authetication... and my session("cust_id") = request.servervariables("logon_user")
Can the global.asa handle redirection code. As far as i know global.asa never gets executed so Http://  requests are not possible.
Pl. somebody let me know as soon as you can
Avatar of Mark Franz
Mark Franz
Flag of United States of America image

Redirects are handled fine by the Response.Redirect()

<%  Session.Timeout = 20  %>

See the Managing Sessions page;

http://msdn.microsoft.com/library/psdk/iisref/iiapsess.htm
Avatar of qualityacube
qualityacube

ASKER

I know the default session is 20. And I have increased it too.

But I would like to know how it is exactly handled when it times out.

And how would the session_onEnd would look like to handle such timeouts.

I am not programmatically timing out and dont want to.
When it times out, it is the same as a Session.Abandon() event.
Fine... it times out...

when the user clicks on refresh...on the page.. what happens ?

It seeks in the global.asa and sees on session_onEnd what it has to do..

in the session_onEnd do I have to give a response.redirect("url") to some URL. I need a working example please if you can.

I am also seeing how OWA functions.

I don't have any working examples on a Redirect, but you should be able to just write a sub that redirects on timeout...
i did write one and put it in global.asa

Sub Session_OnEnd
response.redirect("http://www.clarixxon.com")
end sub

it never worked.


I added the same code in another file...it never worked.


You'll have to check when they make the next request whether they're logged in or not and then redirect.

On login set up a flag to indicate a logged in status.

<% session("loggedin") = true %>

Then create code which does a redirect if they're not logged in.

logcheck.asp
<%
  if not session("loggedin") then  
%>
<html>
<script language="javascript">
function notloggedin() {
  location.href="login.asp";
}
</script>
<body onload=
"window.setTimeout('notloggedin()', 500);">
Sorry, either your session timed out or you're trying to access this page before you've logged in.  Redirecting to login page.
</body>
</html>
<% response.end
  end if %>

Then in every page that you need to make sure that the person is logged in simply include the file above.

<!-- #include virtual="/virtual/path/to/logcheck.asp" -->
<%  rest of your page goes here %>
Yipee... Clockwatcher.. Thats what I did.

I accomplished the same yesterday.
I am anyway capturing the
session("cust_id")=request.servervariables("LOGON_USER")

I had an .inc file put in place with the

if session("cust_id") = "" then
   response.redirect ("URL")
end if.

and it was working perfectly fine.

Thanks all the same.

For your info...I cant have my own timeouts... I need to go by the IIS timeout settings.
ASKER CERTIFIED SOLUTION
Avatar of gkostov
gkostov

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial