Digital Colony!

IsNull in VB.NET

IsNull is not supported in VB.NET. Classic ASP users that used IsNull in VBScript should now use IsNothing.
If Not Request.Form("LastName") Is Nothing Then
   '-- Do something!
End If

Labels:

posted by MAS on Jul 25,2007

Digital Colony Copyright © 1999-2010 XHTML   508
Try...Catch Disclaimer: For brevity many examples do not include error handling. That is your responsibility.