p2p.wrox.com Forums

Need to download code?

View our list of code downloads.


Register | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read
Classic ASP Professional For advanced coder questions in ASP 3. NOT for ASP.NET 1.0, 1.1, or 2.0.

Welcome to the p2p.wrox.com Forums.

You are currently viewing the Classic ASP Professional section of the Wrox p2p Programmer to Programmer discussion community. This is a community of more than 40,000 computer programmers including Wrox book authors and readers. As a guest, you can read any forum posting. By joining our free Wrox p2p community you can post your own programming questions and respond to other programmers’ questions. Registered users also don't have to see the ads that are displayed to guests. Registration is fast, simple and absolutely free so please, join today!
Join today and post to win prizes! Post more to increase your chances of being Wrox’s top poster of the month.

Reply
 
Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old August 12th, 2009, 09:38 PM
Registered User
Points: 5, Level: 1
Points: 5, Level: 1 Points: 5, Level: 1 Points: 5, Level: 1
Activity: 0%
Activity: 0% Activity: 0% Activity: 0%
 
Join Date: Aug 2009
Posts: 1
Thanks: 0
Thanked 0 Times in 0 Posts
Default Basic CDOSYS email form question

Hello,
I'm a designer not a programmer and have a basic question about my mail form. Currently if someone enters an email address that isn't formatted properly (EG. just without @.com etc.), the browser brings up a server error message. However I would like the user to be redirected to a specified page, but I don't know how to do this.
If someone could let me know what code to use and where to insert it, that would be greatly appreciated.
thanks in advance,
Anthony

Code:
<%
Dim MyMail
Dim MyBody
Dim MyEmailFrom
Dim MySubject
Dim MyName
Dim MyPhone
Dim MyWeddDate
Dim MyWeddLocation
Dim MyHowHearAboutUs
Dim MyReferralFrom
Dim MyMessage

MyEmailFrom = Request.Form("EmailFrom")
MySubject = "Wedding Films Website Enquiry"
MyName = Request.Form("Name")
MyPhone = Request.Form("Phone")
MyWeddDate = Request.Form("WeddDate")
MyWeddLocation = Request.Form("WeddLocation")
MyHowHearAboutUs = Request.Form("HowHearAboutUs")
MyReferralFrom = Request.Form("ReferralFrom")
MyMessage = Request.Form("Message")

MyBody = MyBody & "Name: "& MyName & VbCrLf
MyBody = MyBody & "Phone: "& MyPhone & VbCrLf
MyBody = MyBody & "WeddDate: "& MyWeddDate & VbCrLf
MyBody = MyBody & "WeddLocation: "& MyWeddLocation & VbCrLf
MyBody = MyBody & "HowHearAboutUs: "& MyHowHearAboutUs & VbCrLf
MyBody = MyBody & "ReferralFrom: "& MyReferralFrom & VbCrLf
MyBody = MyBody & "Message: "& MyMessage & VbCrLf

Set objErrMail= Server.CreateObject("CDO.Message")
With objErrMail
.From = MyEmailFrom
.To = "anthony@weddingfilms.com.au"
.Subject = "Wedding Website Enquiry"
.TextBody = MyBody
.Configuration.Fields.Item("http://schemas.microsoft.com/cdo/configuration/sendusing") = 2
.Configuration.Fields.Item("http://schemas.microsoft.com/cdo/configuration/smtpserver") = "localhost"
.Configuration.Fields.Item("http://schemas.microsoft.com/cdo/configuration/smtpserverport") = 25
.Configuration.Fields.Update
.Send
End With
Response.Redirect("http://www.weddingfilms.com.au/success.htm")
%>
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Reddit!
Reply With Quote
  #2 (permalink)  
Old August 14th, 2009, 06:18 AM
Imar's Avatar
Wrox Author
Points: 33,563, Level: 80
Points: 33,563, Level: 80 Points: 33,563, Level: 80 Points: 33,563, Level: 80
Activity: 100%
Activity: 100% Activity: 100% Activity: 100%
 
Join Date: Jun 2003
Location: Utrecht, Netherlands.
Posts: 10,231
Thanks: 7
Thanked 203 Times in 201 Posts
Default

Hi there,

You can add On Error Resume Next to your code which continues executing code when an erorr occurs. Then after you "faulty" code you can diagnose the error number. When it's not 0 an error occured and you redirect the user using Response.Redirect("NewPage.asp")

For more details:

http://www.aspdev.org/articles/asp-error-handling/
http://www.powerasp.com/content/new/...esume-next.asp

Don't for get to turn Resume Next off again using Goto 0 as explained here:

http://www.asp101.com/tips/index.asp?id=67

Hope this helps,

Imar
__________________
Imar Spaanjaars
http://Imar.Spaanjaars.Com
Everyone is unique, except for me.
Author of Beginning ASP.NET 3.5 : in C# and VB, ASP.NET 2.0 Instant Results and Dreamweaver MX 2004

Did this post help you? Click the button to show your appreciation!
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Reddit!
Reply With Quote
Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are Off
Pingbacks are On
Refbacks are Off
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Email Form - Question from a Newbie morgan270 ASP.NET 2.0 Basics 8 September 13th, 2006 04:58 PM
Sending email with CDOSYS Tee88 ASP CDO 17 April 19th, 2005 05:00 PM
Sending Email using CDOSYS in ASP asplearner ASP CDO 6 February 16th, 2005 02:48 AM
Incredibly Basic Question, pop up form Kikketer VB.NET 2002/2003 Basics 9 June 12th, 2004 09:52 AM
Sending out Large Email Blasts with CDOSYS Aaron Edwards ASP Pro Code Clinic 0 April 16th, 2004 12:10 PM



All times are GMT -4. The time now is 06:55 AM.


Powered by vBulletin® Version 3.6.8
Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.
© 2008 Wiley Publishing, Inc