%'GoLive Content Source
set LNKS1 = ADORecordSet("quilters" , "select * from aq_links where q_typ = 'Quilt Artist' order by q_tit", "block=0", "ID", "LNKS1")
%>
<%'GoLive Content Source
set LNKS2 = ADORecordSet("quilters" , "select * from aq_links where q_typ = 'group' order by q_tit", "block=0", "ID", "LNKS2")
%>
<%'GoLive Content Source
set LNKS3 = ADORecordSet("quilters" , "select * from aq_links where q_typ = 'Artist' order by q_tit", "block=0", "ID", "LNKS3")
%>
<%'GoLive Content Source
set LNKS4 = ADORecordSet("quilters" , "select * from aq_links where q_typ = 'Quilt Related Business' order by q_tit", "block=0", "ID", "LNKS4")
%>
Links
Quilt Artists
Groups
<% LNKS2.MoveFirst %>
<% while not LNKS2.EOF %>
<%=LNKS2.Value("q_tit")%><% if len(LNKS2.Value("q_des")) > 1 then %>
- <%=LNKS2.Value("q_des")%>
<% end if %>
|
<% LNKS2.MoveNext %>
<% wend %>
<% if not NoRecords(LNKS3) then %>
Artists
<% LNKS3.MoveFirst %>
<% while not LNKS3.EOF %>
<%=LNKS3.Value("q_tit")%><% if len(LNKS3.Value("q_des")) > 1 then %>- <%=LNKS3.Value("q_des")%> <% end if %>
|
<% LNKS3.MoveNext %>
<% wend %>
<% end if %>
<% if not NoRecords(LNKS4) then %>
Quilt Related Business
<% LNKS4.MoveFirst %><% while not LNKS4.EOF %>
<%=LNKS4.Value("q_tit")%><% if len(LNKS4.Value("q_des")) > 1 then %>- <%=LNKS4.Value("q_des")%> <% end if %>
|
<% LNKS4.MoveNext %><% wend %>
<% end if %>