hello,
got a real simple null detection script in a web page that works on
other sites i've done, i just cant figure out why it's not working on
this one!
this is it:
<%
If productsResults.Fields.Item("THUMBNAIL") = null OR
productsResults.Fields.Item("THUMBNAIL") = "" THEN
Response.Write ""
Else
Response.Write "then write the image"
End If
%>