alright the page i am have created can be seen here http://www.whatifwallscouldtalk.com/confession.html
the actionscript for the “confess” button is
on (release) {
getURL(“basicmail.asp”, “”, “POST”);
}
the info for the combobox is in LABELS not in the actionscript
-the instance name for the combobox is Age
-the Change Handler for the combobox is age
-the group name for the radio buttons is Gender
-for the “Male” radio button “male” is the Data and the Change Handler
-for the “Female” radio button “female” is the Data and the Change Handler
i know how to send the data in the textbox to my email, but not the radio buttons or the combobox
here is the ASP code for basicmail.asp:
<% @language=“VBSCRIPT” %>
<%
Dim myMail, myBody, Gender, Age
myBody = "Gender: "& request.form(“Gender”) & vbcrlf
myBody = myBody & "Age: "& request.form(“Age”) & vbcrlf
myBody = myBody & "Confession: "& vbcrlf & request.form(“texte”)
Set myMail = CreateObject(“CDONTS.NewMail”)
myMail.BodyFormat=1
myMail.MailFormat=1
myMail.From=“myemailaddress”
myMail.To=“myemailaddress”
myMail.Subject=“A Confession”
myMail.Body=myBody
myMail.Send
set myMail=nothing
%>
<html>
<title>mail</title>
<meta http-equiv=“refresh” content=“3;URL=http://whatifwallscouldtalk.com”>
<body bgcolor="#999999" text="#FFFFFF" link="#0000CC" vlink="#0000CC" alink="#0000CC">
<div align=“center”>
<p><font face=“Verdana” size=“2” color="#FFFFFF"> <font face=“Arial, Helvetica, sans-serif” size=“4”><b>YOUR CONFESSION HAS BEEN SENT … THANK YOU </b></font></font></p>
<p><b><font face=“Arial, Helvetica, sans-serif” size=“4” color="#FFFFFF">To
Return To What If Walls Could Talk</font></b></p>
<p><b><font face=“Arial, Helvetica, sans-serif” size=“4” color="#FFFFFF"><a href=“http://whatifwallscouldtalk.com”>Click
Here</a> </font></b> </p>
</div>
</body>
</html>