%
if (isNull(request.cookies("ckyUserID"))) or (request.cookies("ckyUserID")="") then
response.redirect "index.asp"
end if
%>
<%
x = swapIt(x)
response.write "| Categories |
| |
"
s = "SELECT * From tblCategory ORDER BY strDescription"
set rst = cn.execute(s)
while not rst.eof
x = swapIt(x)
response.write "| " & rst("strDescription") & " |
"
rst.movenext
wend
rst.close
cn.close
set cn = nothing
%>