asp 新手吧
<%@LANGUAGE="VBSCRIPT" CODEPAGE="936"%>
<%
'对 页面上也没看你引入conn文件 也没定义conn
sql="select title from news where ID='&ID "
set rs=server.createobject("adodb.recordset")
rs.open sql,conn,1,1
if rs.recordcount=1 then
title=rs("title")
content=rs("content")
end if
set rs=nothing '每次记录集都要清空
%>
conn没有定义吧,没有看到打开数据库连接。
你这句SQL语句有错误sql="select title from news where ID='&ID "
应该是sql="select title from news where id="&id