标题:留言板实现不了功能,程序有错?
取消只看楼主
yqiong
Rank: 1
等 级:新手上路
帖 子:315
专家分:0
注 册:2007-7-4
结帖率:83.33%
 问题点数:0 回复次数:0 
留言板实现不了功能,程序有错?
<%
set conn=server.createobject("ADODB.connection")
conn.open "留言板"
set rs=server.createobject("ADODB.recordset")
sql="select user,qq,email,content,data from 留言板"
rs.open sql,conn,1,1
%>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>无标题文档</title>
<style type="text/css">
<!--
#Layer1 {    position:absolute;
    left:307px;
    top:218px;
    width:470px;
    height:76px;
    z-index:1;
}
-->
</style>
</head>

<body>
<div id="Layer1">
  <table width="500" border="0">
    <tr>
      <td colspan="6">留言人<%=rs("user")%>&nbsp;留言于&nbsp;<%=rs("data")%></td>
      <td width="52">QQ<%=rs("qq")%>&nbsp;邮件<%=rs("email")%></td>
    </tr>
    <tr>
      <td width="65">内容:</td>
      <td colspan="6"><%=rs("content")%></td>
    </tr>
    <tr>
      <td colspan="7">&nbsp;</td>
    </tr>
   </table>
  <%
  rs.close
  conn.close
  %>
</div>
</body>
</html>
搜索更多相关主题的帖子: 留言 
2008-05-02 10:17



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-211977-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.016195 second(s), 8 queries.
Copyright©2004-2025, BCCN.NET, All Rights Reserved