ASP uCase Function
The ASP uCase() function is used to set a string or the contents of a variable to Uppercase.
uCase Function Arguments
Text to be revised
ASP Coding for uCase Function
<%
sTxtString = "How is John?"
sTxtString = uCase(sTxtString)
Response.Write sTxtString
%>
OR
<%
Response.Write uCase("How is John?")
%>
Result
HOW IS JOHN?