I have a site that uses ASP and HTML that bases its information on a set of Session Variables. Within one page, a user submits a form, which I have named "MainWindow" in JS, and opens a second window and redirect the window to a specific page. The second window, which I've used JS to name the Window.name property as ChildWindow, will create a second set of Session Variables in which the ChildWindow can base their reports on.
Depending on the window (either MainWindow or ChildWindow), I can use the correct set of session variables. The problem is that I would not be able to know if the user had clicked back on the MainWindow. I can't fire an onLoad event on the <body> tag to run any javascript because I'm not loading the document. I'm just focusing onto one window from another.
I know this is a difficult one but any help would be a lead. Thanks in advance...
Depending on the window (either MainWindow or ChildWindow), I can use the correct set of session variables. The problem is that I would not be able to know if the user had clicked back on the MainWindow. I can't fire an onLoad event on the <body> tag to run any javascript because I'm not loading the document. I'm just focusing onto one window from another.
I know this is a difficult one but any help would be a lead. Thanks in advance...