Submit a Site

 


String to Upper or Lower Case in ASP

October 22nd, 2007 | by valiik |

Turn your ASP string text to upper or lower case with ease by using these comands.

<%mySentense = "This text is going to be upper or lower case"Response.Write UCASE(mySentense) 'Upper Case
Response.Write LCASE(mySentense) 'Lower Case

%>

Post a Comment