我这是哪里错了?ACCESS数据就是显示不出来
我这是哪里错了?ACCESS数据就是显示不出来
id字段的值也传递过来了
====================
show_article.asp
====================
<!--#include file="admin/monthly_conn.asp" -->
<%
article_id=request.QueryString("id") '这里值已经过来了
dim rs_art
set rs_art=server.createobject("adodb.recordset")
sql_art="select * from e_monthly_article where id='"&article_id&"'"
rs_art.open sql_art, conn,1,3
%>
<html>
<head>
<title>文章内容</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<link href="monthly_css.css" rel="stylesheet" type="text/css">
</head>
<body leftmargin="0" topmargin="0">
<table width="778" border="0" cellspacing="0" cellpadding="0">
<tr>
<td align="center">
<table width="90%"><tr>
<td align="center">
<!--就是这个文章标题显示不了-->
<h4><font color="#0099CC"><%=rs_art("title")%></font></h4>
</td>
</tr>
<%
rs_art.close
set rs_art=nothing
conn.close
set conn=nothing
%>
</table>
</td>
</tr>
</table>
</body>
</html>