主题:[讨论]asp从数据库读取数据时报错!!
这是页面的读取代码:
<%
set rs = server.CreateObject("adodb.recordset")
sql = "select contenttop,content,datenow from yhly"
rs.open sql,conn
if not rs.eof then
%>
<div style="width:690px; height:380px; border-style:solid">
<div style="width:350px; height:30px; border-style:solid; float:left">留言标题:<%= rs("contenttop") %></div>
<div style="width:305px; height:30px; border-style:solid; float:left">留言时间:<% = rs("datenow")%></div><p></p>
<div style="width:680px; height:150px; border-style:solid">留言内容:<p></p><%= rs("content")%></div>
</div>
<%
end if
rs.close
conn.close
set rs = nothing
set conn = nothing
%>
这是报的错误,但是我已经授权了!!我是新手,请问大侠怎么回事呢???
HTTP 错误 500.19 - Internal Server Errorweb.config 文件的 system.webServer/httpErrors 节中不允许绝对物理路径“C:\inetpub\custerr”。请改用相对路径。
<%
set rs = server.CreateObject("adodb.recordset")
sql = "select contenttop,content,datenow from yhly"
rs.open sql,conn
if not rs.eof then
%>
<div style="width:690px; height:380px; border-style:solid">
<div style="width:350px; height:30px; border-style:solid; float:left">留言标题:<%= rs("contenttop") %></div>
<div style="width:305px; height:30px; border-style:solid; float:left">留言时间:<% = rs("datenow")%></div><p></p>
<div style="width:680px; height:150px; border-style:solid">留言内容:<p></p><%= rs("content")%></div>
</div>
<%
end if
rs.close
conn.close
set rs = nothing
set conn = nothing
%>
这是报的错误,但是我已经授权了!!我是新手,请问大侠怎么回事呢???
HTTP 错误 500.19 - Internal Server Errorweb.config 文件的 system.webServer/httpErrors 节中不允许绝对物理路径“C:\inetpub\custerr”。请改用相对路径。