|
|
| Statements [+] Favor-It | |
| |
 |
| | Sort By:
|
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 |
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 |
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 |
|  | |
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 |
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 |
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 |
|  | |
Icon Key >
 - Recently Updated
 - Showcase Listing
|