|
网页发生错误:错误原因:语法错误 (操作符丢失) 在查询表达式 'sid=' 中。
错误类型:
Microsoft JET Database Engine (0x80040E14)
pub.asp, 第 93 行 rs.open sql,conn,3,1
在线等
<% id=request("id")
ssid=id
set rs=server.createobject("adodb.recordset")
sql="select * from maimai_info where sid="&id&" order by id desc "
rs.open sql,conn,3,1
if rs.eof then
response.write "您还没有发布任何信息!"
response.write "<input type=button value=添加 name=Input onClick=window.location.href='addmaimai.asp'></a>"
else
rs.pagesize=10
countpage=rs.pagecount
ccount=request("countcount")
if ccount="" then
ccount=1
else
if int(ccount)>countpage or int(ccount)<=0 then
ccount=1
else ccount=ccount
end if
end if
rs.absolutepage=ccount
%>
<form name="form1" method="post" action="pub.asp">
<table width="99%" border="0" align="center" bgcolor="#B6CFDC" cellspacing="1" cellpadding="0">
<% do while not rs.eof
ysid=rs(0)
%> |
|