Ver Mensaje Individual
  #2 (permalink)  
Antiguo 22/03/2002, 05:42
Mecenias
 
Fecha de Ingreso: agosto-2001
Mensajes: 336
Antigüedad: 23 años, 6 meses
Puntos: 0
Re: problemas con accesos a campos vacios

The IsNull function determines if the expression is Null.

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

Output:
True

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

Output:
False
Espero que te sirva

seria algo mas o menos asi:

if isnull(Datos("Apellidos")) then

bla bla bla

Saludos