Home
Developer Blog
Ajax effects
CSS examples
Freelance jobs
Hot IT Jobs
Hot scripts
Code samples
Web hosting directory
Lotus Notes FAQ
See the new scripts recently added to Dynamic Drive.
Click here
.
Original, practical
CSS codes and examples
such as CSS menus for your site.
Search code samples
Keyword
All Categories
ASP
CSS
Dhtml
Html
Javascript
PHP
Code Samples
ASP
CSS
Dhtml
Html
Javascript
PHP
LOGIN HERE
Username
Password
Signup Now
Forgot Password
Verify Signup
ASP >> General
How do you convert a string to all uppercase or all lowercase?
Visitor Ratings (0) :
Description
To convert a string to uppercase use the UCase function. To convert a string to lowercase use the LCase function.
Code
Select All
Dim str str = "ThIs iS a sTRInG wITh mIxED casE." 'This will print out the string all in lowercase Response.Write LCase(str) 'This will print out the string all in uppercase Response.Write UCase(str)
Rate this Resource
0
1
2
3
4
5
6
7
8
9
10