Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
<% On Error Resume Next %> 'at the top of your code
[code]
if rs("SomeTableThatMustBeFilled") = "" then
Response.write "The thing wasnt found"
Else
if not rs.EOF and rs.BOF then
[COLOR=green]'Okay it was found continue doing whatever.. [/color]
Else
ErrMessage = "No Records." [COLOR=green]'Only if there is no records in DB [/color]
End IF
end if