IF Then ASP Question

This is a discussion on "IF Then ASP Question" within the Classic ASP section. This forum, and the thread "IF Then ASP Question are both part of the Program Your Website category.



Go Back   Webforumz.com > Main Forums > Program Your Website > Classic ASP

Notices


Closed Thread
 
LinkBack Thread Tools
  #1 (permalink)  
Old Mar 9th, 2005, 14:28
New Member
Join Date: Mar 2005
Posts: 1
Thanks: 0
Thanked 0 Times in 0 Posts
IF Then ASP Question

Hi,

Thank you for reading my question.
How owuld you go about creating a ASP page that uses a form that will direct persons who fill this form out to different pages depending on what form options they checked? I am also using CDOSYS email function in the ASP form to email the results of each form.

So if someone were to check Yes Sign Me Up, they would go to 1.asp, but if they did not check the Yes Sign Me Up box they would go to 2.asp.

Does this make sense?

Thanks,
Jen

  #2 (permalink)  
Old Mar 9th, 2005, 16:59
Rob's Avatar
Rob Rob is offline
Head Admin & CEO

SuperMember
Join Date: Jul 2003
Location: at my desk
Age: 34
Posts: 2,952
Blog Entries: 7
Thanks: 7
Thanked 4 Times in 4 Posts
Send a message via MSN to Rob Send a message via Skype™ to Rob
Basically, you would use something like:-
Code: Select all
If request.form("signmeup") <> "" Then
    response.redirect "pagename.asp"
else
   response.redirect "a_differentpage.asp"
end if
__________________
Rob - SEO Specialist
Owner & Founder of Webforumz.com

I am currently unavailable for private work
Closed Thread

Tags
then, asp, question

Thread Tools

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

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads
Thread Thread Starter Forum Replies Last Post
Php Question longstand PHP Forum 4 Oct 21st, 2007 01:12
another question please....... napstar Starting Out 3 Feb 20th, 2007 22:28
css question Daniel Web Page Design 29 Feb 16th, 2007 12:13
Question!! JacobHaug JavaScript Forum 5 Dec 28th, 2006 18:22


All times are GMT. The time now is 04:35.


Powered by vBulletin®
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.2.0 RC8
© 2003-2008 Webforumz.com : All Rights Reserved

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43