If THEN ELSEIf Demo

Contributed by
Rating: 3 stars3 stars3 stars3 stars3 stars / 14
November 20, 1999
Rate this Article:
MEH MEH++


SEARCH ASP FREE
TOOLS YOU CAN USE

advertisement

This demo shows how to use an IF THEN ELSEIF statement together. 

The three situations this checks for if you fill in anything, checks for the Color Blue and lastly your favorite color..  Using a ELSEIF is ok for one or two situations but nested ELSEIF statements can slow your code down.  Its recommended to move to the SELECT CASE statement.

Here is the code Page 1.  Simple Input form

<html><head><title></title></head><body>

<P><EM><STRONG>Type in your favorite Color and click submit</STRONG></EM></P>
<FORM METHOD="post" NAME="FORM2" action="ifthen.asp">
<table>
<tr><td>Favorite Color</td><td><input name="color" ></td></tr>
<tr><td></td></tr>
<tr><td colspan="2"><INPUT id=submit2 name=submit2 style="LEFT: 302px; TOP: 637px" type=submit value="Choose your favorite Color"></td></tr>
</table>
</FORM>

</BODY>
</HTML>

Here is page 2  Results Page

<%@ Language=VBScript %>
<%

dim strColor

If request("color") = "" Then
strColor = "You didn't fill anything in"
Elseif request("color") = "Blue" Then
strColor = "Your Favorite Color :" & request("color")
Else
strColor = "Your Favorite Color is: " & request("Color")
End If
%>
<HTML>
<HEAD>
</HEAD>
<BODY>
<% = strColor %>
</BODY>
</HTML>

blog comments powered by Disqus
ASP CODE ARTICLES

- ASP Forms
- ASP: The Beginning
- Getting Remote Files With ASP Continued
- Inbox and Outbox Manipulation in ASP
- Relational DropDownList Using VB.NET
- Ad Tracking URL Hits
- Use ViewState to display one record per page...
- Send Email using ASP.NET formatted in HTML
- ASP File Explorer
- ASP/XML Interview questions by Srivatsan Sri...
- Pressing RETURN won't submit the form
- This shows how you get the TEXT of a combo r...
- Group Data by Adrian Forbes
- Multiple checkbox select sample
- Multiple checkbox select with all values sam...

ASP Web Hosting ASP.Net Web Hosting Windows Web Hosting
 
 
 

ASP Free Forums 
 RSS  Tutorials RSS
 RSS  Forums RSS
 RSS  All Feeds
Site Map 
Request Media Kit
Write For Us Get Paid 
Weekly Newsletter
 
Developer Updates  
Free Website Content 
Privacy Policy 
Support 


© 2003-2012 by Developer Shed. All rights reserved. DS Cluster 7 - Follow our Sitemap
Most Popular Topics
All ASP.Net Tutorials