Web Hosting Talk







View Full Version : somebody help me, asp form not working :(


kayz
05-01-2006, 03:33 PM
Hi all, ive got a deadline tommorow, and im stuck on this asp form it just wont work!

ok heres the contact page:

http://cms-stu-iis.gre.ac.uk/am663/contact/contact.htm

you can view the source code to see the form structure...,

and heres my asp file:

<%



Set Mail = Server.CreateObject("Persits.MailSender")
Mail.Host = "smtp.gre.ac.uk"
Mail.FromName = request("txtName")
Mail.From = request("txtEmail")
Mail.AddAddress "kayz_place@hotmail.com"
Mail.Subject = "Website Email - Princess Diana"
Mail.Body = request("select") & request("txtEmail") & request("txtTelephone") & request("radioQuestion") & request("txtName") & request("commentsandsuggestions)
Mail.Send

Response.Redirect("thankyoupage.htm" & EmailFrom)

%>

its really ticking me off, id be very happy is somebody could help.

Thanks!