
Eliminating IsEmpty and IsNull Issues in ASP
When dealing with COM, unfamiliar database schemas, or regular code, sometimes you will find yourself wondering whether to test if a variable is Null by using either: IsEmpty(varname)IsNull(varName)If varname = 0If varname 0, orIf varname > 0 This little quick trick will eliminate all of those issues and allow you