Hello
I have a simple ASP page which says 'Thank you + name' to the person who has visited the site, completed the form, and clicked 'submit'.
This 'Thank you + name' page is a full Web page, but I wonder if it is possible to create it as a pop up window, loaded immediately the user clicks 'submit'. I think it would also look better if the pop up appeared centred and over the Web page which holds the form.
I know pop up windows can be created in JavaScript, but I am not sure how to combine the JavaScript with the current 'Thank you' page which I have, which is:
<% @ Language=VBScript %>
<% user_name = request.form("user_name"
%>
<html>
<body bgcolor="#FF9900">
<center><b><font face="courier"><font color="#FFFFFF"><font size=1>
<p>Thank you <%=user_name%>
<p>Your request for a quote has been received <p>
Please check your inbox</p></p></font></font></font></b></center>
</body>
</html>
Many thanks for any sugestions.
LaPluma
I have a simple ASP page which says 'Thank you + name' to the person who has visited the site, completed the form, and clicked 'submit'.
This 'Thank you + name' page is a full Web page, but I wonder if it is possible to create it as a pop up window, loaded immediately the user clicks 'submit'. I think it would also look better if the pop up appeared centred and over the Web page which holds the form.
I know pop up windows can be created in JavaScript, but I am not sure how to combine the JavaScript with the current 'Thank you' page which I have, which is:
<% @ Language=VBScript %>
<% user_name = request.form("user_name"
<html>
<body bgcolor="#FF9900">
<center><b><font face="courier"><font color="#FFFFFF"><font size=1>
<p>Thank you <%=user_name%>
<p>Your request for a quote has been received <p>
Please check your inbox</p></p></font></font></font></b></center>
</body>
</html>
Many thanks for any sugestions.
LaPluma