I open a child window, make some changes, save those changes to a database, and then close that window.
What I want to do is cause the parent or "opening window" to be refreshed when the child window is closed.
In javascript you can do the following:
CHILD WINDOW:
function CallParent(url)
{
window.opener.RefreshParent(url)
self.close()
}
PARENT WINDOW:
function RefreshParent(url)
{
//alert("Reload Parent"
location.href=url
}
How do I do this in VBScript?
TIA
Nate
What I want to do is cause the parent or "opening window" to be refreshed when the child window is closed.
In javascript you can do the following:
CHILD WINDOW:
function CallParent(url)
{
window.opener.RefreshParent(url)
self.close()
}
PARENT WINDOW:
function RefreshParent(url)
{
//alert("Reload Parent"
location.href=url
}
How do I do this in VBScript?
TIA
Nate