%@Language="vbscript" Codepage="65001"%> <% call SiteInfo dim Biaoji Biaoji=request.QueryString("SortID") if Biaoji="" then Biaoji=0 end if if ISHTML = 1 then Response.expires = 0 Response.expiresabsolute = Now() - 1 Response.addHeader "pragma", "no-cache" Response.addHeader "cache-control", "private" Response.CacheControl = "no-cache" End If if request.QueryString("SortID")="" then ppid=0 SeoTitle="产品中心" SeoTitle1="产品中心"&" - " elseif not IsNumeric(request.QueryString("SortID")) then SeoTitle="参数错误" elseif conn.execute("select * from Qianbo_ProductSort Where ViewFlag and ID="&request.QueryString("SortID")).eof then SeoTitle="参数错误" else set rs = server.createobject("adodb.recordset") sql="select * from Qianbo_ProductSort where ViewFlag and ID="&request.QueryString("SortID") rs.open sql,conn,1,1 SeoTitle=rs("SortName") SeoTitle1=rs("SortName")&" - " ppid=rs("ParentID") if ppid<>0 then set rs3 = server.createobject("adodb.recordset") sql3="select * from Qianbo_ProductSort where ViewFlag and ID="&ppid&"" rs3.open sql3,conn,1,1 Seotitle1=SeoTitle1&rs3("SortName")&" - " rs3.close set rs3=nothing end if rs.close set rs=nothing end if %>