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
|