⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 polllinedetail.asp

📁 1 除掉了 时间 限制 2 除掉了 人数 限制 改为 500人 原为5人 3 发现一点小缺陷 增加人员的时候没有判断 登陆名是否重复! 自己写吧~~~:) 4 又 是一点缺陷
💻 ASP
字号:
<!--#include file="../config.ini" -->
<!--#include file="../commfunction.inc" -->
<%
Dim objcheck
Set objcheck=Server.CreateObject("SmartSales.CheckFunction")
objcheck.CheckUserFunction "poll","read"
set objcheck=nothing

dim conn
dim rs 
set conn=server.CreateObject("adodb.connection")
set rs=server.CreateObject("adodb.recordset")
conn.Open connstring
rs.Open "select * from pollline where polllineid="&request("polllineid"),conn,1,1
if rs.EOF then
	Response.Write "记录不存在"
	Response.End 
end if
%>
<html>
<head>
<LINK href="../global.css" rel=STYLESHEET type=text/css>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title><%=rs("subject")%></title>
</head>
<body>
<table width="100%" height="30" border="0" cellpadding="0" cellspacing="0">
  <tr> 
    <td colspan="2"><b><font  class="title">主题:<%=rs("subject")%></font></b> &nbsp;&nbsp; 
    </td>
  </tr>
  <tr > 
    <td height="16" colspan="2" background="../images/title.gif"></td>
  </tr>
  <tr> 
    <td height=4></td>
  </tr>
</table>

<table width="100%" border="0" cellpadding="0" cellspacing="1" bgcolor="FFFFFF">
  <tr> 
    <td width="12%" height=20 align=center bgcolor="DEDFDE">描述:</td>
    <td width="88%" colspan="5" align=center bgcolor="EFEFEF"> <div align="left"><%=replace(rs("description"),chr(13),"<br>")%></div></td>
  </tr>
</table>
<%
  rs.Close
  set rs=nothing
  conn.Close 
  set conn=nothing
  %>
</body>
</html>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -