I'm trying to call on info from my data base except If the information is blank or = to NA then I want it to display an error message/url. If it's not blank or not = to NA then I want it to display the information in the db.
This is my code so fare..
<%
if trim(rs("pstarted") = "" or IsNull(rs("pstarted")then Err_Msg = Err_Msg & "upgrade now"
end if
%>
Now this code works but if the info is some thing other then a blank field thin it shows nothing. Like if I've "1/1/2002" it comes up blank.
This is my code so fare..
<%
if trim(rs("pstarted") = "" or IsNull(rs("pstarted")then Err_Msg = Err_Msg & "upgrade now"
end if
%>
Now this code works but if the info is some thing other then a blank field thin it shows nothing. Like if I've "1/1/2002" it comes up blank.