ASP Uppercase or lowercase a string
Uppercase or lowercase a string
<html>
<body>
<%
name = "John Smith"
response.write(ucase(name))
response.write("<br>")
response.write(lcase(name))
%>
</body>
</html>
<html>
<body>
<%
name = "John Smith"
response.write(ucase(name))
response.write("<br>")
response.write(lcase(name))
%>
</body>
</html>