% If Request.QueryString("albumID") = "" Then response.Redirect("Fotoalbum.asp?NoID") Else sAlbumID = Request.QueryString("albumID") End If BepaalBeheerDB SQLalbum = "SELECT * FROM albumlijst WHERE albumID = " & sAlbumID set Albumlijst = MakeRecordSet(BeheerDB,SQLalbum) If Albumlijst.Recordcount <= 0 Then response.Redirect("Fotoalbum.asp?AlbumNotFound") End If SQLfoto = "SELECT * FROM fotolijst WHERE albumID = " & sAlbumID & " ORDER BY FotoID ASC" set Fotolijst = MakeRecordSet(BeheerDB,SQLfoto) %>
Album: <%= Albumlijst("albumnaam") &" (" & day(Albumlijst("datum"))& " " & monthname(month(Albumlijst("datum"))) & " " & year(Albumlijst("datum")) & ")" %>
Fotograaf: <%= Albumlijst("Fotograaf") %>
Omschrijving: <%=Albumlijst("omschrijving")%>
<% If Fotolijst.Recordcount <= 0 Then response.write("Er zijn geen foto's gevonden in dit album") End If %>
">" border="0"> <% Else %> "> <% End If %> <%=Fotolijst("bijschrift")%> |
<%
Fotolijst.Movenext
Kolomteller = Kolomteller + 1
Loop
%>