Hi all,
I'm using the following in a child page after it posts info to a database:
This worked perfectly until I made the child page an "https:" page because the user has to enter their ssn. Now it just stays open with a permission denied script error. Any thoughts? I don't know how to get around this. many thanks in advance.
I'm using the following in a child page after it posts info to a database:
Code:
'refresh parent, close self
With Response
.Write "<script language=javascript>"
.Write "window.opener.location.reload();"
.Write "self.close();"
.Write "</script>"
End With