convert uppercase to lowercase using asp
by Nirmala[ Edit ] 2009-08-24 10:27:10
Hi...
Use the below code to convert lowercase to uppercase and uppercase to lowercase.
<% Dim str
str="dfhgdsfghfdhfghaqew"
str=UCase(str) //covert to uppercase
Response.Write(str&"<br>")
str=LCase(str) //convert to lowercase
Response.Write(str)%>
Output:
DFHGDSFGHFDHFGHAQEW
dfhgdsfghfdhfghaqew