|
|
| Conditional [+] Favor-It | |
| |
 |
| | Sort By:
|
An If Statement is used to make a decision in your ASP program to execute certain code if some condition is True. When you program an ASP If Statement it is actually the same as programming a VBScript If Statement. Author: tixag Code: ASP 3.0 & VBScript |
A Case statement is similar to the If statement, as it only executes the part of the code where the condition is met. Select Case is more efficient, however, and should be used in cases where you have more than two conditions that need to be evaluated. Author: ASPBootcamp Code: ASP 3.0 & VBScript |
The If....Then...Else instructions sequence is very similar to the one we may find in different kind of scripting languages. With this tutorial, you will learn how to used them and how they work. Author: AspTutorial.info Code: ASP 3.0 & VBScript |
|  | |
This tutorial helps you to understand: "If" Statements and Examples; "Select Case" Statements and Examples. Author: Herong Yang Code: ASP 2.0 & VBScript |
This tip is one way to use Select Case in asp. Very easy you can have a lot of functions in the same script, and then save a lot of number of files at your server. Author: SagasenT Code: ASP 3.0 & VBScript |
Knowing when to use the if statement versus when to use to use the select case statement is fairly easy to understand. The if statement should be used when you are testing a specific condition and expecting only a few results. Author: Jared Stauffer Code: ASP 3.0 & VBScript |
There are two types of conditional logic in ASP: if and select. I will show you how to use both of them. In Conditionals Part 2, I will discuss when and why to use each of them.
Author: Jared Stauffer Code: ASP 3.0 & VBScript |
|  | |
This is a quick sample demonstrating the use of a Select Case statement. The four case links all reference the same script. Outputs is determined by the step parameter in the querystring. Code: ASP 3.0 & VBScript |
Sometimes when you write code, you want to perform different actions for different decisions. You can use conditional statements in your code to do this. Author: WebCheatSheet Code: ASP 3.0 & VBScript |
Icon Key >
 - Recently Updated
 - Showcase Listing
|