[bo]Microsoft JET Database Engine 错误 '80040e14'
语法错误 (操作符丢失) 在查询表达式 'id=' 中。
/file.asp,行 6[/bo]
我的源码:
<div id="left">
<table border="0" width="480px">
<tr>
<td>
<ul>
<li><a href="file.asp?<%=rs("id")%>"><%=rs("capital")%></a></li>
</ul>
</td>
</tr>
</table>
[bo]file.asp内容:[/bo]<!--#include file="include/conn.asp"-->
<%
id=request.querystring("id")
set rs=server.createobject("adodb.recordset")
sql="select capital,content from history where id="&id
rs.open sql,conn,1,1
%>
<html>
<head>
<title></title>
</head>
<body>
<table border="0" width="800px" height="500px">
<tr>
<td><%=rs("capital")%></td>
</tr>
<tr>
<td><%=rs("content")%></td>
</tr>
</table>
</body>
</html>