<% if rs_photos.bof and rs_photos.eof then %>
<%response.write(variable)%>
<%response.write("No Photos")%>
<% else %>
<%response.write(variable)%>
click on thumbnail to view project
<% n=1 rs_photos.movefirst do while not rs_photos.eof n=n+1 %>
<%response.write(" " & rs_photos(1) & " ")%>
<% on error resume next if rs_photos.eof then %>
<% Else rs_photos.movenext %>
<%response.write(" " & rs_photos(1) & " ")%>
<% end if %>
<% rs_photos.movenext loop end if %>