Nov 1, 2001 #1 kenjoswe Technical User Sep 19, 2000 327 SE Hi all, How can I redirect to a message-page if the recordset doesn't retrive any records? Something like: if rs.NoRecords then response.redirect "NoData.html" end if /Kent J.
Hi all, How can I redirect to a message-page if the recordset doesn't retrive any records? Something like: if rs.NoRecords then response.redirect "NoData.html" end if /Kent J.
Nov 1, 2001 1 #2 lobstah Programmer May 14, 2001 384 US if rs.EOF then response.redirect "NoData.html" end if Upvote 0 Downvote