Ok I think you are going about this the wrong way.
What I see you want to do is open a pop up window with the flash file in it right.
That is called basic_mail.asp and that has the code to email and everything.
What you need to do is create just a regular html file with the flash file in it and have the pop up pull that up then have a totally separte page called basic_mail.asp and have your code in it that you post above
<%
Dim MyMail, myBody
myBody = "Name: "& request.form("name") & vbcrlf
myBody = myBody & "Email: "& request.form("email") & vbcrlf
myBody = myBody & "Message: "& vbcrlf & request.form("message")
Set MyMail = Server.CreateObject("Persi
MyMail.Host = "mail.emailaddress.com"
MyMail.body = myBody
MyMail.IsHTML = True
MyMail.From = request.form("email")
MyMail.Username = "test@emailaddress.com"
MyMail.Password = "test"
MyMail.AddAddress "test@emailaddress.com"
MyMail.Subject = "test"
'MyMail.AddCC "Valid@emailaccount.com"
If MyMail.Send Then
Response.Write("Message Sent.")
Else
Response.Write("Message Not Sent.")
End If
Set MyMail = Nothing
%>
Then on the submit button for the flash file
have this
on(release)
{loadVariablesNum ("basic_mail.asp", "0", "Post");
}
This works great for me
http://theyac.org/indexlow
Click on prayer request this is one of my working ones.
Fixitiben
Main Topics
Browse All Topics





by: BuffonPosted on 2005-03-02 at 00:34:44ID: 13437159
why wont you open the asp directly from flash?
blank", "POST");
getURL("basic_mail.asp","_