Hits Today: 1 Total: 67 | Updated: 9/14/2007 | |
 | You are not required to use the Call keyword when calling a procedure. However, if you use the Call keyword to call a procedure that requires arguments, argumentlist must be enclosed in parentheses. Author: VBScriptOnline Code: ASP 3.0 & VBScript |
Hits Today: 1 Total: 75 | Updated: 9/14/2007 | |
 | Within a Class block, members are declared as either Private or Public using the appropriate declaration statements. Anything declared as Private is visible only within the Class block. Author: VBScriptOnline Code: ASP 3.0 & VBScript |
Hits Today: 1 Total: 82 | Updated: 9/19/2007 | |
 | The Exit Do can only be used within a Do...Loop control structure to provide an alternate way to exit a Do...Loop. Any number of Exit Do statements may be placed anywhere in the Do...Loop. Author: VBScriptOnline Code: ASP 3.0 & VBScript | |  | |
Hits Today: 1 Total: 44 | Updated: 3/6/2008 | |
 | When you want to loop through an array or something else, the For loop is often the easiest way to do this.
Author: HyperLink Code: ASP 3.0 & VBScript |
Hits Today: 1 Total: 56 | Updated: 3/6/2008 | |
 | The Do loops are a little different from the For loop. The For loop did a specific action a certain number of times. The Do loop continues to do a specific action until the supplied statement is found to be true. Author: Hyperlink Code: ASP 3.0 & VBScript |
Hits Today: 1 Total: 49 | Updated: 3/7/2008 | |
 | The While WEnd loop is very similar to the Do loop. This loop performs the requested action until a condition is met. The only difference is a small amount of syntax.
Author: DevDiamond Code: ASP 3.0 & VBScript | |  | |
|