📄 car.asp
字号:
<!--#include file="security.asp"-->
<!--#include file="articleconn.asp"-->
<!--#include file="home1.asp"-->
<html>
<%if session("flag")>1 then
response.write "<script>alert('您的操作权限不够!');history.back();</script>"
response.end
end if
%>
<head>
<meta http-equiv="Content-Language" content="zh-cn">
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<meta name="GENERATOR" content="Microsoft FrontPage 5.0">
<meta name="ProgId" content="FrontPage.Editor.Document">
<link rel="stylesheet" type="text/css" href="css/css.css">
<title>充值卡管理页</title>
</head>
<style type=text/css>
body { background:#336699; margin:0px; font:9pt 宋体; }
table { border:0px; }
td { font:normal 12px 宋体; }
img { vertical-align:bottom; border:0px; }
a { font:normal 12px 宋体; color:#000000; text-decoration:none; }
a:hover { color:#000000;text-decoration:underline; }
.sec_menu { border-left:1px solid white; border-right:1px solid white; border-bottom:1px solid white; overflow:hidden; background:#D6DFF7; }
.menu_title { }
.menu_title span { position:relative; top:2px; left:8px; color:#215DC6; font-weight:bold; }
.menu_title2 { }
.menu_title2 span { position:relative; top:2px; left:8px; color:#428EFF; font-weight:bold; }
</style>
<body leftmargin="0" topmargin="0">
<%
MaxPerPage=20
dim totalPut
dim CurrentPage
dim TotalPages
dim i,j
dim typename
typename=""
if not isempty(request("page")) then
currentPage=cint(request("page"))
else
currentPage=1
end if
dim sql
dim rs
dim rstype
dim typesql
dim typeid,typename1
if not isEmpty(request("typeid")) then
typeid=request("typeid")
else
typeid=0
end if
%>
<table border="0" align=center width="439" cellspacing="0" cellpadding="0">
<tr>
<td width="439" height=50></td>
</tr>
</table>
<%
sql="select * from car order by id desc"
Set rs= Server.CreateObject("ADODB.Recordset")
rs.open sql,conn,1,1
if rs.eof and rs.bof then
response.write "<p align='center'> <font color=ffffff><b>还 没 有 任 何 充 值 卡</b></p>"
else
totalPut=rs.recordcount
totalPut=rs.recordcount
if currentpage<1 then
currentpage=1
end if
if (currentpage-1)*MaxPerPage>totalput then
if (totalPut mod MaxPerPage)=0 then
currentpage= totalPut \ MaxPerPage
else
currentpage= totalPut \ MaxPerPage + 1
end if
end if
if currentPage=1 then
showpage totalput,MaxPerPage,"car.asp"
showContent
showpage totalput,MaxPerPage,"car.asp"
else
if (currentPage-1)*MaxPerPage<totalPut then
rs.move (currentPage-1)*MaxPerPage
dim bookmark
bookmark=rs.bookmark
showpage totalput,MaxPerPage,"car.asp"
showContent
showpage totalput,MaxPerPage,"car.asp"
else
currentPage=1
showpage totalput,MaxPerPage,"car.asp"
showContent
showpage totalput,MaxPerPage,"car.asp"
end if
end if
end if
sub showContent
dim i
i=0
%>
<div align="center">
<center>
<table border="0" cellspacing="1" width="441" bordercolorlight="#000000" bordercolordark="#FFFFFF" cellpadding="2" height="33" style="border-collapse: collapse" bordercolor="#111111">
<tr height="25" bgcolor="#f3f3f3">
<td width="84" align="center"><b>电影卡号</b></td>
<td width="78" align="center"><b>电影卡密码</b></td>
<td width="56" align="center"><b>可充天数</b></td>
<td width="42" align="center"><b>面 值</b></td>
<td width="66" align="center"><b>电影卡类型</b></td>
<td width="33" align="center"><b>删除</b></td>
</tr>
<%do while not rs.eof%>
<tr>
<td height="25" width="84" bgcolor="#FFFFFF"> <p align="center"><%=rs("carid")%></td>
<td width="78" height="25" bgcolor="#FFFFFF" align="center"><%=rs("carpws")%></td>
<td width="56" height="25" bgcolor="#FFFFFF" align="center"><%=rs("day")%>
<%if rs("oklook")=0 then%>点<%else%>天<%end if%></td>
<td width="42" height="25" bgcolor="#FFFFFF" align="center"><%=rs("paymoney")%>
元</td>
<td width="66" height="25" bgcolor="#FFFFFF" align="center">
<%if rs("oklook")=2 then%>
计月卡
<%elseif rs("oklook")=3 then%>
包季卡
<%elseif rs("oklook")=4 then%>
包年卡
<%elseif rs("oklook")=5 then%>
终生卡
<%end if%>
</td>
<td width="33" height="25" bgcolor="#FFFFFF" align="center"> <a href="delcar.asp?id=<%=rs("id")%>"><font color="#000000">删除</font></a></td>
</tr>
<% i=i+1
if i>=MaxPerPage then exit do
rs.movenext
loop
%>
</table>
</center>
</div>
<%
end sub
function showpage(totalnumber,maxperpage,filename)
dim n
if totalnumber mod maxperpage=0 then
n= totalnumber \ maxperpage
else
n= totalnumber \ maxperpage+1
end if
%>
<table border="0" align="center" bgcolor="FFF772" cellspacing="0" height="25" width="439">
<form method=Post action="<%=filename%>?typeid=<%=typeid%>">
<tr><td>
<center>共有<font color="#ff0000"><b><%=totalnumber%></b></font>部 当前:第<strong><font color="#ff0000"><%=CurrentPage%></font></strong>页/共<strong><font color="#ff0000"><%=n%></font></strong>页</center>
<td><div align="right">
<%if CurrentPage<2 then%>
<font color='888888'>首页 上一页</font>
<%else%>
<a class=left href="<%=filename%>?typeid=<%=typeid%>&page=1&">首页</a>
<a class=left href="<%=filename%>?typeid=<%=typeid%>&page=<%=CurrentPage-1%>">上一页</a>
<%
end if
if n-currentpage<1 then
%>
<font color='888888'>下一页 尾页</font>
<%else%>
<a class=left href="<%=filename%>?typeid=<%=typeid%>&page=<%=(CurrentPage+1)%>">下一页</a>
<a class=left href="<%=filename%>?typeid=<%=typeid%>&page=<%=n%>">尾页</a>
<%end if%>
<td align="center"><select name="page" onchange="javascript:submit()">
<%for i = 1 to n%>
<option value="<%=i%>" <%if cint(CurrentPage)=cint(i) then%> selected <%end if%>>第<%=i%>页</option>
<%next%></select></td></div></td></td>
</tr></form></table>
<%
end function
%>
<%
sub gotopage
end sub
%>
<SCRIPT>
function MM_openBrWindow(theURL,winName,features) { //v2.0
mediaWindow = window.open(theURL,winName,features);
mediaWindow.focus();
}
function formcheck()
{
if (loginform.not.value=="")
{
alert('请问你要添加几张?');
loginform.not.focus();
return false;
}
if (loginform.paymoneyj.value=="")
{
alert('这张卡要多少钱?!');
loginform.paymoneyj.focus();
return false;
}
if (loginform.paymoneyj.value.length < 2)
{
alert('这张卡也太便宜了吧!');
loginform.paymoneyj.focus();
return false;
}
return true;
}
</SCRIPT>
<div align="center">
<center>
<table border="0" cellpadding="2" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111" width="439" id="AutoNumber1" height="25">
<form method="POST" action="carsave.asp" name="loginform" onsubmit="if (!formcheck()) return false;">
<tr align="center">
<td width="112" height="25" bgcolor="#FFFFFF"><font size="2">
<select size="1" name="day">
<option value="30">包月会员卡</option>
<option value="120">包季会员卡</option>
<option value="365">包年会员卡</option>
<option value="36500">终生会员卡</option>
</select></font></td>
<td align="center" width="106" height="25" bgcolor="#FFFFFF">
<input type="text" name="not" size="10"> 张</td>
<td align="center" width="100" height="25" bgcolor="#FFFFFF">
<input type="text" name="paymoneyj" size="6"><span lang="en-us"> </span>
元</td>
<td align="center" width="100" height="25" bgcolor="#FFFFFF">
<input type="submit" value="点击增加" name="B1"></td>
</tr>
</form>
</table>
</center>
</div>
</body>
</html>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -