U have to use window.open and window.opener
try this example
page1.htm
<HTML>
<script language="vbscript">
window.status="This is page 1"
set wnd=window.open("page2.htm",null, "height=200,width=400,status=yes,toolbar=no,menubar=no,location=no"
msgbox wnd.opener.status
msgbox wnd.status
</script>
</HTML>
in this example wnd is a reference to the new opened window and from that u could get the status of the window witch open the new window (opener property is the reference to the parent window and it has all the methods and property of parent window including status witch is "This is Page 1"
wnd.status is a reference to the opened window and displays the status of this(if status of the new page is "Page loaded" means that the new page is loaded and do something...
page2.htm
<HTML>
<BODY onload="window.status='Page loaded';">
<P>The Page is Loaded</P>
</BODY>
</HTML>
if the new page is loaded set the status to "Page loaded" witch is finded in the page who open this window by the wnd object(this is the reference to the the new window)
hope this solve your problem it's verry simple to comunicate between windows with opener and open ... ________
Every hour?
If i understand then u...
If u are interesting to change every hour u must check the time when the asp or htm loads, even if u dont visit the page for 2 hours the next time u load tha page will chek the hour and see that was 2 hours ago last page querry...
If not u must provide me with some informations... ________
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.