Reply
initial question - response sends you to one of two pages
Old 08-04-2008, 07:26 PM initial question - response sends you to one of two pages
Experienced Talker

Posts: 31
Trades: 0
I have two existing HTML forms that I'd like to combine into one page. The trick is, I'd like the page to first display a question, the answer of which will determine which of the two forms are displayed. Could anyone give me some assistance on how to do this? ASP seems like a good way to go with this, but I'm pretty much an ASP newbie. Any help is much appreciated. Thanks
__________________
My NEW Website for my local area =)
http://www.srcservice.com
PCBOY123 is offline
Reply With Quote
View Public Profile Visit PCBOY123's homepage!
 
 
When You Register, These Ads Go Away!
Old 08-05-2008, 06:22 AM Re: initial question - response sends you to one of two pages
chrishirst's Avatar
Super Moderator

Posts: 22,222
Location: Blackpool. UK
Trades: 0
Simplest is a if ... then ... elseif ... end if construct
Code:
<body>

<% 
if lcase(request.form("reply")) = "" then
%>
Question goes here <br>
<form name="ask" action="<%=request.servervariables("script_name")%>" method="post">
<input type="radio" name="reply" value="yes">Yes
<input type="radio" name="reply" value="no">No
<br>
<input type="submit" name="submit" value="Send">
</form>
<% elseif lcase(request.form("reply")) = "yes" then %>
' The "yes" form goes here
<% elseif lcase(request.form("reply")) = "no" then %>
' The "no" form goes here
<%end if%>

</body>
__________________
Chris. ->> Links are advertising NOT optimising!! <<-
Growing old is mandatory - Growing up is optional
Code Samples | People Counting System | Bits & Bobs
chrishirst is online now
Reply With Quote
View Public Profile Visit chrishirst's homepage!
 
Reply     « Reply to initial question - response sends you to one of two pages
 

Thread Tools Search this Thread
Search this Thread:

Advanced Search

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 Off
Pingbacks are Off
Refbacks are Off





   
RSS Feed  Feeds: RSS   JS   XML
RSS Feed  Feeds for this forum: RSS   JS   XML

 



Page generated in 0.10474 seconds with 13 queries