UCase
The UCase function converts a text string into all
uppercase characters. It doesn't modify the source string which
is passed in the first parameter. Instead, it creates a copy of
the string which is then converted to all uppercase and returned
to the caller.
Const sText = "The quick brown fox" Response.Write UCase(sText)
You can also use the LCase function to convert a string
to all lowercase characters.
|
 |

|