Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Wanet Telecoms Ltd on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

create pop for no records

Status
Not open for further replies.

DirtDawg

IS-IT--Management
Apr 17, 2002
218
JP
Hello,

I have a webpage that is querying and SQL Database. I would like to have a pop stateing "No records found please contact Manager". with a close button. can anyone help I am using ASP.

Thank you in advance
 
Detect for eof before iterating through results

If rs.EOF Then

response.write &quot;<script>alert('No Records Returned')</script>&quot;

Else

Do While ....
etc
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top