> I have been working on session timeout for an application and I got a
> lot of help from this discussion Board. My Thanks to all of you.
[quoted text clipped - 4 lines]
> and then log to the second page and so forth.. Don't session timeout
> value get reset each time we go to another page ?
Yes.
> I have noticed that if i go to the initial page and keep pressing F5
> the page gets refreshed and the session timeout timer will start after
> the last refresh done.
>
> But this is not the case if i have a website with multiple pages..
Yes, it is.
> The
> session timeout will start after i open the first page and no matter
[quoted text clipped - 3 lines]
> Response.AppendHeader("Refresh",Convert.ToString((Session.Timeout *
> 60) -1170) + ";URL=Index.aspx");
Of course you will be. The refresh will be triggered 30 seconds after
the page has been loaded, that has absolutely nothing to do with the
session timeout. The refresh is a function in the browser, it doesn't
know anything at all about the Sessions on the server.
> What is the difference between Refresh {Pressing F5} and getting
> another page by clicking on the link.
As far as the session timeout is concerned, none at all.

Signature
Göran Andersson
_____
http://www.guffa.com
Not sure bit it looks like to me that you think that Session.Timeout is the
time to the end of the session ? This is a fixed value that holds the
duration for a session so your calculation will always give the same
value...
---
Patrice
>I have been working on session timeout for an application and I got a
> lot of help from this discussion Board. My Thanks to all of you.
[quoted text clipped - 22 lines]
> Thank you,
> astrix