programming-examples/asp/More_Code_Snippets/Upper or lower case conversions.asp

10 lines
231 B
Plaintext
Raw Permalink Normal View History

2019-11-18 14:25:58 +01:00
<%
Dim strSample
'our sample string
strSample = "Our Sample String To Convert"
'convert to lower case
Response.Write LCase(strSample)
Response.Write "<br>"
'convert to upper case
Response.Write UCase(strSample)
%>