<% If Len(Aid) <> 0 Then
objRec.Filter = "ArtistID ='"&Aid&"'"
%>
| Artist Name |
Title |
Net Price |
To the picture |
<% While Not objRec.EOF%>
| <%= objRec.Fields("LastName") & " " & objRec.Fields("FirstName") %> |
<%= objRec.Fields("Description") %> |
$<%= objRec.Fields("NetPrice") %> |
">click here |
<%
objRec.MoveNext
Wend
objRec.Close
Set objRec = Nothing
%>
<%
End If
If Len(Cat) <> 0 Then
objRec.Filter = "Category ='"&Cat&"'"
%>
Category: <%=Cat%>
| Artist Name |
Title |
Net Price |
To the picture |
<% While Not objRec.EOF%>
| <%= objRec.Fields("LastName") & " " & objRec.Fields("FirstName") %> |
<%= objRec.Fields("Description") %> |
$<%= objRec.Fields("NetPrice") %> |
">click here |
<%
objRec.MoveNext
Wend
objRec.Close
Set objRec = Nothing
%>
<%
End If
objRecd.Open "Artist", strConnect, 0, 1
If Not objRecd.EOF Then
objRecd.MoveFirst
%>
|
<% End If
objRecd.Close
Set objRecd = Nothing
%>
|
|
|
|