回 帖 发 新 帖 刷新版面

主题:[讨论]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”。请改用相对路径。

回复列表 (共3个回复)

沙发

问题不在这些代码上.是在另一个文件,conn.inc中

板凳

你调用数据库的文件错误,修改一下路径试试

3 楼

rs.open sql,conn,1,1

可以参考:深圳网站制作技术交流专区[url=http://www.shenzhenyxw.com]http://www.shenzhenyxw.com[/url]

我来回复

您尚未登录,请登录后再回复。点此登录或注册