<%
Set rsc = Server.CreateObject("ADODB.Recordset")
Set rsc2 = Server.CreateObject("ADODB.Recordset")
strcatalog=request.QueryString("cat")
strtbname=Ucase(request.QueryString("tbname") )
'strsql2="select * from "& strtbname & " "
strsql2="select * from Laboratory_Ware where category='"&strtbname&"' "
rsc2.Open strSql2,conn,2,2
if not rsc2.eof then
strdesc=rsc2.fields("Category_description")
end if
rsc2.close
strimg=request.QueryString("img")
' response.Write(strimg)
strsql="select * from "& strtbname & " where catalog_no='"&strcatalog&"' "
rsc.Open strSql,conn,2,2
%>