isNull Function
- Home
- ASP
- isNull Function
Have you ever done this?
<%
if
IsNull(rs("somefield")) then
sVariable = ""
else
sVariable = rs("somefield")
end if
%>
You can accomplish the same by doing the following:
<%
sVariable = "" & rs("somefield")
%>
asp isNull isNull Function Recordset