sessiontimeout

  • Thread starter Thread starter richakarve
  • Start date Start date
R

richakarve

i want to stop the child window from session timeout if the user is
working on its parent window.
i am using window.settimeout property. The problem is the child window
is not in the Master page and the parent window is..so there is not
direct linking between to as such
please help me.
 
Your post is somewhat confusing. If a "child window" is created by a parent
window, the parent can hold a reference (in client script) to child via the
return value of the window.open method.

The fact that the child window isn't connected to a MasterPage should not
have anything to do with this scenario.

There is no specific way to access the Session (which is strictly a
server-side object) from a page (window) sitting in a browser unless you make
a request. So for example, refreshing the page would keep the child window's
session alive because each request that has a session moves the Session's
sliding expiration back to its starting point.
Peter
 
thanks for the reply!
tho i havnt used window.open to open a new pop up but have used response.redirect.
the thing is if the user wishes to work on the parent even if the pop is open.. the session of pop should also get refreshed..but thats not happening.
so this is my issue can u please help me.
 
Back
Top