ASP怎样用文章标题作为页面标题

2024-11-30 13:14:28
推荐回答(2个)
回答1:

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 '每次记录集都要清空
%>



<%=title%><br>

回答2:

conn没有定义吧,没有看到打开数据库连接。
你这句SQL语句有错误sql="select title from news where ID='&ID "
应该是sql="select title from news where id="&id