请教数据库
<%
cus_id = Request.Cookies("cus_id")
if cus_id = "" then
Response.Redirect("../index.htm")
End If
selectitem = request("selcet")
set conTemp=Server.CreateObject("ADODB.Connection")
dbpath = Server.MapPath("../sra.mdb")
conTemp.Open "provider=microsoft.jet.oledb.4.0;data source="&dbpath
rderallSQL="SELECT * FROM status_check WHERE order_no in ("& selectitem &") ORDER BY proforma DESC"
set rsorderall=conTemp.execute(orderallSQL)
%>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>无标题文档</title>
</head>
<body>
<%
Response.Write "<br>您一共选择了"&request("selcet").count&"项,"
Response.Write "<br>您选择的项目有:" & selectitem
%>
</body>
</html>
-------------------------------------
把第13、14行
rderallSQL="SELECT * FROM status_check WHERE order_no in ("& selectitem &") ORDER BY proforma DESC"
set rsorderall=conTemp.execute(orderallSQL)
删除掉就好了
可是那我怎么进行筛选啊
so
请教诸位