mgfranz, thank you for the response.
Unfortunately, you have to hold my hand a little more with this....[:0(
I have a page called "join.asp" where people enter all the information into a form. Then that form calls this same page, "join.asp", and if "enterinfo=yes" inserts all the information into the database and displays a "Thank You" text.
So when this "join.asp" page loads with the "Thank You" text I want a pop-up window with the email address already filled in. This pop up window is the page which loads when you click on the ConstantContact form-code I had provided earlier.
Sorry for sounding confusing but that is totally because of my ignorance of technical terms.
Thanx again,
--d.
Main Topics
Browse All Topics





by: mgfranzPosted on 2008-03-07 at 06:58:31ID: 21070672
Sure you can do this, just write the insert function at the top of the page that checks the form content for value, in this case the Submit button ID and value can be used;
<%
varButtonVal = Request("Name")
If varButtonVal = "Join" Then
' Run database inserts here
.
.
' Be sure to clear the button value
valButtonVal = ""
Else
' do nothing
End If
%>