On Sat, 10 Jul 2004 08:50:10 -0400, "Bob Barrows [MVP]"
<> wrote:
>Jeff Cochran wrote:
>> On Fri, 9 Jul 2004 23:39:15 +0100, "Keith" <@.> wrote:
>>
>>> What is the correct code to use to hide a section if a specific DB
>>> field is NULL.
>>
>> Hide a section as in using DHTML to hide/unhide? Try a DHTML group
>> for that answer.
>>
>> If you're looking for an ASP-only answer:
>>
>> IF DBField <> Null Then
>> Response.Write "Hidden Section"
>> End If
>>
>> Jeff
>Minor correction:
>IF Not DBField Is Null Then
>
>or
>
>If IsNull(DBField) = False Then
Bleh! Should stop answering posts at 2:00 am...
Especially since I just ran through an IsNull() programming section
during the day.
Jeff