|
Links
|
<%if rsOpt.eof then%>
|
There are no categories to view.
|
<%else%>
<%do while not rsOpt.eof%>
<%SQLString = "SELECT * FROM ResourceLinks, ResourceLinkOptions " & _
" WHERE ResourceLinks.ResourceLinkID = ResourceLinkOptions.ResourceLinkID" & _
" AND ResourceLinkOptions.ResourceOptionID = " & rsOpt("ResourceOptionID")
'Response.Write(SQLstring) 'DEBUG SQLString
set rs = DB.execute(SQLString)
if rs.eof then%>
|
There are no links to view.
|
<%else%>
|
<%=rsOpt("ResourceOptionName")%>
|
<%do while not rs.eof
SQLString = "SELECT * FROM ResourceLinks WHERE ResourceLinkID = " & rs("ResourceLinkID")
'Response.Write(SQLstring) 'DEBUG SQLString
set rsLink = DB.execute(SQLString)%>
<%if not rsLink.eof then%>
|
" target="_blank"><%=rsLink("ResourceLinkName")%>
|
|
" target="_blank"><%=rsLink("ResourceLinkURL")%>
|
|
<%=rsLink("ResourceLinkDesc")%>
|
|
|
<%else%>
|
There are no links to view.
|
<%end if%>
<%rsLink.close : set rsLink=nothing%>
<%rs.movenext
Loop%>
|
|
<%end if%>
<%rsOpt.movenext
Loop%>
<%end if%>