Version: 1.0
The CStr function converts an expression into a variant of
subtype String.
If the expression is Boolean, the output is a string containing
either true or false. If the expression is a Date, the output is
a string using the short-date format. If the expression is empty, the
output is a zero length string. If the expression is an error, the
output is a string with the word error followed by the error number. If
the expression is numeric, the output string contains the number. If
the expression is Null (does not exist), the output is a runtime
error.
<% anyexpression=5678 %>
<% =CStr(anyexpression) %>
5678