ASP Hosting sale!
1,000MB space, 40GB transfer, 1 SQL Server 2000 db! - $9.95 per month*!
Limited Time Offer!

aspdev | articles | tutorials | forums

ASPdev -> All Articles -> ASP LCase Function

ASP LCase Function

The ASP LCase function is used to convert a string to lower case. The string argument of the LCase function can be any valid string.

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.

Consider the following ASP code:

<%

sMyString = “ASPdev.org”
sLowerCaseString = LCase(sMyString)
Response.Write(sLowerCaseString)

%>

The code above will print the following in your browser:

aspdev.org




Contact Us