Version: 1.0
The LCase function converts a string to all lower case
letters.
There is also a companion function UCase to convert to upper
case letters.
You can also use the name of the string.
<% =LCase("Aardvarks do not make good pets!")%>
aardvarks do not make good pets!
<% astring="Leopards also make bad pets!"%>
<% =LCase(astring) %>
leopards also make bad pets!