Forum Moderators: open
If rs.eof then
If Session("BeenHere") = "YES" then
Response.write "No Records Found"
else
response.write "Please Choose...."
end if
else
Do While not rs.eof
response.write rs.fields.....
rs.movenext
loop
end if