Tycoon Talk
Become a Big fish!
The number 1 forum for online business!
Post topics, ask questions, share your knowledge.
Tycoon Talk is part of Freelancer.com - find skilled workers online at a fraction of the cost.

ASP.NET Forum


You are currently viewing our ASP.NET Forum as a guest. Please register to participate.
Login



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 =)

Please login or register to view this content. Registration is FREE
PCBOY123 is offline
Reply With Quote
View Public Profile Visit PCBOY123's homepage!
 
 
Register now for full access!
Old 08-05-2008, 06:22 AM Re: initial question - response sends you to one of two pages
chrishirst's Avatar
Missing! presumed drunk.

Posts: 41,517
Name: Chris Hirst
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!! <<-
A foolish consistency is the hobgoblin of little minds
Thought for today:- I SEO the only industry where all the cowboys are Indians?
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.09306 seconds with 12 queries