% IncludeTop 'RETRIEVE QUERYSTRING VARIABLES cid = request("cid") pid = request("pid") 'QUERY PRODUCTS FOR SELECTED CATEGORY if len(cid) = 0 then response.write "
Please select a category.
| "
if not rsSubCat.eof then
Response.Write "" + chknull(rsSubCat("Name"), " ") + " "
rsSubCat.movenext
do while not rsSubCat.eof
Response.Write "| " + chknull(rsSubCat("Name"), " ") + " "
rsSubCat.movenext
loop
response.write " " end if Response.Write " |
No products found. Please select another category.