📄 votelist.asp
字号:
<% Option Explicit %>
<!--#include file="../../../Inc/Const.asp" -->
<!--#include file="../../../Inc/Cls_DB.asp" -->
<%
Dim DBC,Conn
Set DBC = New DataBaseClass
Set Conn = DBC.OpenConnection()
Set DBC = Nothing
%>
<!--#include file="../../../Inc/Session.asp" -->
<!--#include file="../../../Inc/CheckPopedom.asp" -->
<%
if Not JudgePopedomTF(Session("Name"),"P070300") then Call ReturnError1()
'Conn.Execute("Update Vote set State=2 where EndTime<>'0' and EndTime<='"&Now()&"'")
Dim RsVoteObj
Set RsVoteObj = Server.CreateObject(G_FS_RS)
RsVoteObj.open "Select * from FS_Vote order by AddTime desc",conn,1,1
%>
<html>
<head>
<link href="../../../CSS/FS_css.css" rel="stylesheet" type="text/css">
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>投票列表</title>
</head>
<script src="../../SysJS/PublicJS.js" language="JavaScript"></script>
<script language="JavaScript" src="../../SysJS/ContentMenu.js"></script>
<body topmargin="2" leftmargin="2" onclick="SelectVote();" ondragstart="return false;" onselectstart="return false;">
<table width="100%" border="0" cellpadding="1" cellspacing="1" bgcolor="#999999">
<tr bgcolor="#EEEEEE">
<td height="26" colspan="5" valign="middle">
<table width="100%" height="20" border="0" cellpadding="0" cellspacing="0">
<tr>
<td width=35 align="center" alt="新建投票" onClick="AddVote();" onMouseMove="BtnMouseOver(this);" onMouseOut="BtnMouseOver(this);" class="BtnMouseOut">新建</td>
<td width=2 class="Gray">|</td>
<td width=35 align="center" alt="修改投票" onClick="EditVote();" onMouseMove="BtnMouseOver(this);" onMouseOut="BtnMouseOver(this);" class="BtnMouseOut">修改</td>
<td width=2 class="Gray">|</td>
<td width=35 align="center" alt="删除投票" onClick="DelVote();" onMouseMove="BtnMouseOver(this);" onMouseOut="BtnMouseOver(this);" class="BtnMouseOut">删除</td>
<td width=2 class="Gray">|</td>
<td width=35 align="center" alt="开启投票" onClick="OpenVote();" onMouseMove="BtnMouseOver(this);" onMouseOut="BtnMouseOver(this);" class="BtnMouseOut">开启</td>
<td width=2 class="Gray">|</td>
<td width=35 align="center" alt="关闭投票" onClick="CloseVote();" onMouseMove="BtnMouseOver(this);" onMouseOut="BtnMouseOver(this);" class="BtnMouseOut">关闭</td>
<td width=2 class="Gray">|</td>
<td width=55 align="center" alt="查看投票结果" onClick="BrowResultOfVote();" onMouseMove="BtnMouseOver(this);" onMouseOut="BtnMouseOver(this);" class="BtnMouseOut">查看结果</td>
<td width=2 class="Gray">|</td>
<td width=55 align="center" alt="调用代码" onClick="GetCode();" onMouseMove="BtnMouseOver(this);" onMouseOut="BtnMouseOver(this);" class="BtnMouseOut">调用代码</td>
<td width=2 class="Gray">|</td>
<td width=35 align="center" alt="后退" onClick="top.GetEkMainObject().history.back();" onMouseMove="BtnMouseOver(this);" onMouseOut="BtnMouseOver(this);" class="BtnMouseOut">后退</td>
<td> </td>
</tr>
</table>
</td>
</tr>
</table>
<table width="100%" height="100%" border="0" cellpadding="0" cellspacing="0">
<tr>
<td colspan="5" height="2"></td>
</tr>
<tr>
<td valign="top">
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="41%" height="26" class="ButtonListLeft">
<div align="center">项目名称</div></td>
<td width="14%" height="26" class="ButtonList">
<div align="center">类型</div></td>
<td width="11%" height="26" class="ButtonList">
<div align="center">选项</div></td>
<td width="11%" height="26" class="ButtonList">
<div align="center">状态</div></td>
<td width="23%" height="26" class="ButtonList">
<div align="center">添加时间</div></td>
</tr>
<%
if Not RsVoteObj.Eof then
Dim page_size,page_no,page_total,record_all,PageNums
page_size = 10
page_no=request.querystring("page_no")
if page_no<=1 or page_no="" then page_no=1
If Request.QueryString("page_no")="" then
page_no=1
end if
RsVoteObj.PageSize=page_size
page_total=RsVoteObj.PageCount
if (cint(page_no)>page_total) then page_no=page_total
RsVoteObj.AbsolutePage=page_no
record_all=RsVoteObj.RecordCount
Dim i
for i=1 to RsVoteObj.PageSize
if RsVoteObj.eof then exit for
Dim Types,States
If RsVoteObj("Type") = "0" then
Types = "单选"
else
Types = "多选"
end if
Select case RsVoteObj("State")
Case "0" States="关闭"
Case "1" States="开启"
Case "2" States="过期"
End Select
%>
<tr height="20">
<td><table border="0" cellspacing="0" cellpadding="0">
<tr>
<td><img src="../../Images/Vote.gif" width="24" height="22"></td>
<td><span class="TempletItem" VoteID="<%=RsVoteObj("VoteID")%>" State="<%=RsVoteObj("State")%>"><%=RsVoteObj("Name")%></span></td>
</tr>
</table></td>
<td><div align="center"><%=Types%></div></td>
<td><div align="center"><%=RsVoteObj("OptionNum")%></div></td>
<td><div align="center"><%=States%></div></td>
<td><div align="center"><%=RsVoteObj("AddTime")%></div></td>
</tr>
<%
RsVoteObj.MoveNext
Next
end if
RsVoteObj.close
Set RsVoteObj = Nothing
%>
</table></td></tr>
<tr>
<td valign="middle" height="10">
<table width="100%" border="0" cellspacing="0" cellpadding="0" class="ButtonListLeft">
<tr height="1">
<td height="25" valign="middle">
<div align="right">
<% = "NO.<b>"& page_no &"</b>, " %>
<% = "Totel:<b>"& page_total &"</b>, RecordCounts:<b>" & record_all &"</b> "%>
<%
if Page_Total=1 then
response.Write " <img src=../../images/FirstPage.gif border=0 alt=首页></img> "
response.Write " <img src=../../images/prePage.gif border=0 alt=上一页></img> "
response.Write " <img src=../../images/nextPage.gif border=0 alt=下一页></img> "
response.Write " <img src=../../images/endPage.gif border=0 alt=尾页></img> "
else
if cint(Page_No)<>1 and cint(Page_No)<>Page_Total then
response.Write " <a href=?page_no=1" &"&Keywords="&Request("Keywords")&"><img src=../../images/FirstPage.gif border=0 alt=首页></img></a> "
response.Write " <a href=?page_no="&cstr(cint(Page_No)-1) &"&Keywords="&Request("Keywords")&"><img src=../../images/prePage.gif border=0 alt=上一页></img></a> "
response.Write " <a href=?page_no="&cstr(cint(Page_No)+1) &"&Keywords="&Request("Keywords")&"><img src=../../images/nextPage.gif border=0 alt=下一页></img></a> "
response.Write " <a href=?page_no="& Page_Total &"&Keywords="&Request("Keywords")&"><img src=../../images/endPage.gif border=0 alt=尾页></img></a> "
elseif cint(Page_No)=1 then
response.Write " <img src=../../images/FirstPage.gif border=0 alt=首页></img></a> "
response.Write " <img src=../../images/prePage.gif border=0 alt=上一页></img> "
response.Write " <a href=?page_no="&cstr(cint(Page_No)+1) &"&Keywords="&Request("Keywords")&"><img src=../../images/nextPage.gif border=0 alt=下一页></img></a> "
response.Write " <a href=?page_no="& Page_Total &"&Keywords="&Request("Keywords")&"><img src=../../images/endpage.gif border=0 alt=尾页></img></a> "
else
response.Write " <a href=?page_no=1" &"&Keywords="&Request("Keywords")&"><img src=../../images/FirstPage.gif border=0 alt=首页></img> "
response.Write " <a href=?page_no="&cstr(cint(Page_No)-1)& "&Keywords="&Request("Keywords")&"><img src=../../images/prePage.gif border=0 alt=上一页></img></a> "
response.Write " <img src=../../images/nextPage.gif border=0 alt=下一页></img></a> "
response.Write " <img src=../../images/endpage.gif border=0 alt=尾页></img> "
end if
end if
%>
</div></td>
<td width="50" valign="middle">
<select onChange="ChangePage(this.value);" style="width:50;" name="select">
<% for i=1 to Page_Total %>
<option <% if cint(Page_No) = i then Response.Write("selected")%> value="<% = i %>">
<% = i %>
</option>
<% next %>
</select>
</td>
</tr>
</table>
</td>
</tr>
</table>
</body>
</html>
<%
Set Conn = Nothing
%>
<script>
var DocumentReadyTF=false;
var ListObjArray = new Array();
var ContentMenuArray=new Array();
function document.onreadystatechange()
{
if (DocumentReadyTF) return;
IntialListObjArray();
InitialContentListContentMenu();
DocumentReadyTF=true;
}
function InitialContentListContentMenu()
{
ContentMenuArray[ContentMenuArray.length]=new ContentMenuFunction("parent.EditVote();",'修改','disabled');
ContentMenuArray[ContentMenuArray.length]=new ContentMenuFunction("parent.DelVote();",'删除','disabled');
ContentMenuArray[ContentMenuArray.length]=new ContentMenuFunction('seperator','','');
ContentMenuArray[ContentMenuArray.length]=new ContentMenuFunction('parent.CloseVote();','暂停','disabled');
ContentMenuArray[ContentMenuArray.length]=new ContentMenuFunction('parent.OpenVote();','激活','disabled');
//ContentMenuArray[ContentMenuArray.length]=new ContentMenuFunction('parent.BrowResultOfVote();','查看','disabled');
//ContentMenuArray[ContentMenuArray.length]=new ContentMenuFunction('parent.GetCode();','调用代码','disabled');
//ContentMenuArray[ContentMenuArray.length]=new ContentMenuFunction('seperator','','');
//ContentMenuArray[ContentMenuArray.length]=new ContentMenuFunction('top.GetEkMainObject().location.reload();','刷新','');
//ContentMenuArray[ContentMenuArray.length]=new ContentMenuFunction('prompt(\'本页面路径属性\',\'<%=Request.ServerVariables("SCRIPT_NAME")%>\');','路径属性','');
}
function ContentMenuFunction(ExeFunction,Description,EnabledStr)
{
this.ExeFunction=ExeFunction;
this.Description=Description;
this.EnabledStr=EnabledStr;
}
function ContentMenuShowEvent()
{
ChangeContentMenuStatus();
}
function ChangeContentMenuStatus()
{
var EventObjInArray=false,SelectContent='',DisabledContentMenuStr='';
for (var i=0;i<ListObjArray.length;i++)
{
if (event.srcElement==ListObjArray[i].Obj)
{
if (ListObjArray[i].Selected==true) EventObjInArray=true;
break;
}
}
for (var i=0;i<ListObjArray.length;i++)
{
if (event.srcElement==ListObjArray[i].Obj)
{
ListObjArray[i].Obj.className='TempletSelectItem';
ListObjArray[i].Selected=true;
if (SelectContent=='') SelectContent=ListObjArray[i].Obj.VoteID;
else SelectContent=SelectContent+'***'+ListObjArray[i].Obj.VoteID;
}
else
{
if (!EventObjInArray)
{
ListObjArray[i].Obj.className='TempletItem';
ListObjArray[i].Selected=false;
}
else
{
if (ListObjArray[i].Selected==true)
{
if (SelectContent=='') SelectContent=ListObjArray[i].Obj.VoteID;
else SelectContent=SelectContent+'***'+ListObjArray[i].Obj.VoteID;
}
}
}
}
if (SelectContent=='') DisabledContentMenuStr=',修改,删除,暂停,激活,查看,调用代码,';
else
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -