To be able to log in to a website, the popup protection for the site-URL must be turned off.
How can I change the code below so that the popup protection in the user's browser has no interest (so it can be on or off)?
Thanks for tips.
<%
IF Session("UID")&"" = "" then ' the session is empty
response.redirect("url_exit.htm")
ELSE
url = "succespage.htm"
response.write("<script>" & vbCrLf)
response.write("window.open('" & url & "');" & vbCrLf)
response.write("</script>")
END IF
How can I change the code below so that the popup protection in the user's browser has no interest (so it can be on or off)?
Thanks for tips.
<%
IF Session("UID")&"" = "" then ' the session is empty
response.redirect("url_exit.htm")
ELSE
url = "succespage.htm"
response.write("<script>" & vbCrLf)
response.write("window.open('" & url & "');" & vbCrLf)
response.write("</script>")
END IF