CSafeStr returns an expression that has been converted to a Variant of subtype String. CSafeStr is similar to CStr except that the expression can be set to Null or Empty.
CSafeStr(expression)
A Variant of subtype String. If the expression is Null or Empty, an empty string ("") is returned.
<%
sName = CSafeStr(Record.Fields("Name"))
%>