Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
  • 한국 커뮤니티
0

show if not null versus show if recordset is not empty

Participant ,
Jun 15, 2008 Jun 15, 2008
I am familiar with the "show if recordset is not empty" server behavior. Is there a comparable server behavior or extension that would provide a "show if database field is not null" effect? I am hand coding the asp to achieve this but am wondering if there is a quick solution.
thanks!
TOPICS
Server side applications
465
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Enthusiast ,
Jun 16, 2008 Jun 16, 2008
Not that i know of, but sounds like you know about IsNull
Dim sVal
sVal = Null
If IsNull(sVal) Then
response.write("Its Null")
End IF
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
LEGEND ,
Jun 17, 2008 Jun 17, 2008
aonefun wrote:
> I am familiar with the "show if recordset is not empty" server behavior. Is
> there a comparable server behavior or extension that would provide a "show if
> database field is not null" effect? I am hand coding the asp to achieve this
> but am wondering if there is a quick solution.
> thanks!
>

I use the Advanced Conditional Region extension from DMXzone.com for
this all the time: http://www.dmxzone.com/showDetail.asp?TypeId=3&NewsId=553

Steve
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
Jun 17, 2008 Jun 17, 2008
LATEST
yes i use that tool too its wicked
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines