aloha to you all`:}
tengo un pequeño problem en no mostrar un registro de una BD si esta en blanco, tengo este ejemplo creado por mi:
Código:
<%
if rs("targ") = True then
tres = "_blank"
else
tres = ""
end if
%>
<%
if rs("link") is nothing then
response.write ""
else
response.write "Mas informacion pinche<b><a href='"
response.write rs("link")
response.write "'target='"
response.write tres
response.write "'>AQUI</a></b>"
end if
%>