Hits Today: 1 Total: 564 | Updated: 1/28/2007 | |
 | 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 |
Hits Today: 2 Total: 2266 | Updated: 3/6/2004 | |
 | 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 |
Hits Today: 1 Total: 260 | Updated: 3/18/2007 | |
 | 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 | |  | |
Hits Today: 1 Total: 622 | Updated: 11/4/2006 | |
 | This tutorial helps you to understand: "If" Statements and Examples; "Select Case" Statements and Examples. Author: Herong Yang Code: ASP 2.0 & VBScript |
Hits Today: 1 Total: 3568 | Updated: 7/27/2001 | |
 | 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 |
Hits Today: 1 Total: 2707 | Updated: 2/29/2004 | |
 | 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 |
Hits Today: 1 Total: 2447 | Updated: 5/21/2004 | |
 | 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 | |  | |
Hits Today: 2 Total: 3123 | Updated: 9/8/2004 | |
 | 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 |
Hits Today: 1 Total: 1021 | Updated: 9/16/2006 | |
 | 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 |
|