ÄúµÄλÖãºÑ°ÃÎÍøÊ×Ò³£¾±à³ÌÀÖÔ°£¾VBScript£¾VBScript


objects constants operators statements functions properties methods






FUNCTION:  IsNull( )

IsNull(Expression)

The IsNull function determines if the expression is Null.

Code:
<% nothere = null %>
<% =IsNull(nothere) %>

Output:
True

Code:
<% =IsNull("This is a string.") %>

Output:
False