|
|
| Case [+] Favor-It | |
| |
 |
| | Sort By:
|
This is a simple example of a VBScript class, that will return the full name of a state or a country given its two letter abbreviation. This is really useful with select boxes in forms and formatting results from databases. Code: ASP 3.0 & VBScript |
The variable that appears immediately after Select Case is what will be checked against the list of case statements. These case statements are contained within the Select Case block of code. Author: tizag Code: ASP 3.0 & VBScript |
This is a simple function that converts a string to Mixed case (very
easy, but a very useful script). Author: Daz B Code: ASP 2.0 & VBScript |
|  | |
Converts first letter of words into uppercase and the rest into lowercase. Had to put something together quickly for imported data and this did the trick. Author: Kobus Duminy Code: ASP 3.0 & VBScript |
Here's a script that will take any string and convert all words so that the first letter is uppercase, the remaining characters are lowercase. Author: Neil Beswick Code: ASP 3.0 & VBScript |
To convert to upper and lower cases you can use the following UCASE and LCASE functions in this tutorial. Author: ProgrammersResource.com Code: ASP 3.0 & VBScript |
The ASP UCase function is used to convert a string to upper case. All lower case letters in the string passed as an argument to UCase are converted to upper case, while all upper case letters and special characters remain the same. Author: AspDev Code: ASP 3.0 & VBScript |
|  | |
The ASP LCase function is used to convert a string to lower case. All upper case letters in the string passed as an argument to LCase are converted to lower case, while all lower case letters and special characters remain the same. Author: AspDev Code: ASP 3.0 & VBScript |
The simplest way to time a script is to basically take a snapshot (now())of the current time before some processing, and then take a snapshot at the end of the processing. Author: Robert Chartier Code: ASP 3.0 & VBScript |
Icon Key >
 - Recently Updated
 - Showcase Listing
|