Hey Everyone,
I have a asp page that pass a form to another asp page which does some database updates.
In the bottom of the update.asp page i have the following Javascript.
This works fine in IE, but in safari, it does not close the broswer or reload the parent page that popped up this window.
Any suggestions? Thanks
I have a asp page that pass a form to another asp page which does some database updates.
In the bottom of the update.asp page i have the following Javascript.
Code:
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Chart Update</title>
</head>
<%
Response.Write("<script type=""text/javascript"">opener.location.reload();</script>")
Response.Write("<script type=""text/javascript"">window.close();</script>")
%>
<body>
</body>
</html>
This works fine in IE, but in safari, it does not close the broswer or reload the parent page that popped up this window.
Any suggestions? Thanks