📄 user_grade.asp
字号:
<%@ Language=VBScript%>
<%
Response.Buffer=false
Response.Expires=0
%>
<!-- #include file="../links.asp" -->
<!-- #include file="./s.asp" -->
<!-- #include file="../dsn.asp" -->
<%
if session("adminusername")="" then
session("xhy")=1
Response.Redirect linkwarn
end if
showok=Request.QueryString ("showok")
id=Request.QueryString("id")
pid=Request.QueryString("pid")
ppid=Request.QueryString("ppid")
pageno=Request.QueryString("pageno")
mode=Request.QueryString ("mode")
htmlname="user_grade.asp?ppid="&ppid&"&pid="&pid
addhtml="user_grade.asp?ppid="&ppid&"&pid="&pid&"&showok=1"
if id="" then
id=0
else
id=cint(id)
end if
if pid="" then
pid=0
else
pid=cint(pid)
end if
if ppid="" then
ppid=0
else
ppid=int(ppid)
end if
plflag=Request.QueryString ("plflag")
pl1=Request.QueryString ("pl")
if pl1="" or pl1=1 then pl1=1
if pl1=1 then
pl1=9
else
pl1=1
end if
if plflag="" then plflag="pl"
set cn=Server.CreateObject("ADODB.Connection")
cn.Open mycnstr
set rs0=server.CreateObject("ADODB.Recordset")
set rs=server.CreateObject("ADODB.Recordset")
set rs1=server.CreateObject("ADODB.Recordset")
set rs2=server.CreateObject("ADODB.Recordset")
if ppid<>0 then
sqltext="select title from bbs_p_scool where id="&ppid
rs1.Open sqltext,cn,1,1
if not rs1.EOF then
bbs_p_scoolname=rs1("title")
end if
rs1.Close
end if
if pid<>0 then
sqltext="select title from bbs_p_classes where id="&pid
rs1.Open sqltext,cn,1,1
if not rs1.EOF then
bbs_p_classesname=rs1("title")
end if
rs1.Close
end if
htmltitle="基本数据管理"
txtname="名称"
tabname="user_grade"
if id<>0 then
sqltext="select * from "+tabname+" where id="&id
rs.Open sqltext,cn,1,1
if not rs.EOF then
titletxt=trim(rs("title"))
creatdate=rs("creatdate")
enable=rs("enable")
pl=rs("pl")
exptxt=trim(rs("exptxt"))
end if
rs.Close
else
enable=1
end if
if Request.ServerVariables("REQUEST_METHOD")="POST" and mode<>"888" then
if not isempty(request("sel")) then
idlist=request("sel")
if instr(idlist,",")>0 then
dim idarr
idArr=split(idlist)
for i = 0 to ubound(idarr)
delid=clng(idarr(i))
call setupdate(delid,mode)
next
else
delid=clng(idlist)
call setupdate(delid,mode)
end if
end if
delid=0
Response.Redirect htmlname
end if
sub setupdate(id,mm)
if mm="999" then
sqltext3="delete from "+tabname+" where id="&id
cn.Execute sqltext3
elseif mm="777" then
sqltext3="update "+tabname+" set enable=1 where id="&id
cn.Execute sqltext3
elseif mm="666" then
sqltext3="update "+tabname+" set enable=0 where id="&id
cn.Execute sqltext3
end if
end sub
function idadd(oldtabname) '得到该表最大ID号
sqltext="select * from tab_id where tab_name='"+oldtabname+"'"
rs0.Open sqltext,cn,1,2
if not rs0.EOF then
rs0("tab_id")=rs0("tab_id")+1
else
rs0.AddNew
rs0("tab_name")=oldtabname
rs0("tab_id")=1
end if
rs0.Update
idadd=rs0("tab_id")
rs0.Close
end function
function pladd(oldtabname,oldpid) '得到该表最大排列号
sqltext="select * from "+oldtabname+" where pid="&oldpid&" order by pl desc"
rs0.Open sqltext,cn,1,1
if not rs0.EOF then
pladd=rs0("pl")+1
else
pladd=1
end if
rs0.Close
end function
if Request.ServerVariables("REQUEST_METHOD")="POST" and mode="888" then
pl=trim(Request.Form("pl"))
titletxt=trim(Request.Form("title"))
exptxt=trim(Request.Form("exptxt"))
if pl="" or not isnumeric(pl) then
pl=pladd(tabname,0)
else
pl=cint(pl)
end if
if id=0 then
sqltext3="select * from "+tabname+" where title='"+titletxt+"'"
rs2.Open sqltext3,cn,1,1
if not rs2.EOF then
err=1
errtxt="错误:“"&titletxt&"”已经存在!"
titletxt=""
end if
if err<>1 and id=0 then
sqltext2="select * from "+tabname
rs1.Open sqltext2,cn,1,2
rs1.AddNew
rs1("id")=idadd(tabname)
rs1.Update
id=rs1("id")
rs1.Close
end if
end if
if err<>1 and id<>0 then
sqltext2="select * from "+tabname+" where id="&id
rs1.Open sqltext2,cn,1,2
rs1("title")=titletxt
rs1("exptxt")=exptxt
if Request.Form ("showflag")="1" then
rs1("enable")=1
else
rs1("enable")=0
end if
rs1("creatdate")=now()
rs1.Update
id=rs1("id")
rs1.Close
end if
if err<>1 then Response.Redirect htmlname
end if
%>
<html>
<head>
<title><%=htmltitle%></title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<style type="text/css">
<!--
body {font-size: 12px; color: #000000; font-family: 宋体}
td {font-size: 12px; color: #000000; font-family: 宋体;line-height:130%}
.t1 {font:12px 宋体;color=000000}
.t2 {font:12px 宋体;color:ffffff}
.t3 {font:12px 宋体;color:336699}
.t4 {font:12px 宋体;color:ff0000}
.t5 {font:12px 宋体;color:ff6600}
.bt1 {font:14px 宋体;color=000000}
.bt2 {font:12px 宋体;color:ffffff}
.bt3 {font:14px 宋体;color:336699}
.bt4 {font:14px 宋体;color:ff0000}
.bt5 {font:14px 宋体;color:0000ff}
.bt10 {font:14px 宋体;color:0000ff}
.td1 {font-size:12px;background-color:#3388bb;color:#ffffff}
.td2 {font-size:12px;background-color:#ffffff;color:#000000;}
A:link {color: #000077}
A:visited {color: #000077}
A:hover {color: #ff0000}
A.r1:link {text-decoration:none;color:#304556;}
A.r1:visited {text-decoration:none;color:#304556;}
A.r1:hover {text-decoration:underline;color:ff6600;}
A.r2:link {text-decoration:none;color:#ffffff;}
A.r2:visited {text-decoration:none;color:#ffffff;}
A.r2:hover {text-decoration:underline;color:cccc00;}
-->
</style>
</head>
<body topmargin=5>
<table width="100%" align=center>
<tr>
<td valign="top" align="left" width="100%">
<table width="100%" height="20" border="0">
<tr>
<td style="font-size:12px;"></td>
<td><font class="t5">当前位置: <%Response.Write (bbs_p_scoolname)%>→ <%Response.Write (bbs_p_classesname)%>(列表)</font>
</td>
<td align="right">
</td>
</tr>
</table>
</td>
</tr>
</table>
<table width="100%" border="0" cellspacing="1" cellpadding="1" style="font-size:14.5px;line-height:100%" valign=top>
<tr><td height=280 valign=top>
<table width="100%" height="20" border="0">
<form action="<%=htmlname%>" method=post name="listform">
<tr>
<%
if pl1=1 then
sqltext1="select * from "+tabname+" order by "+plflag
else
sqltext1="select * from "+tabname+" order by "+plflag+" desc"
end if
'Response.Write sqltext1
rs1.Open sqltext1,cn,1,1
listcs=10
rs1.PageSize=listcs
if pageno="" then
pageno=1
else
pageno=cint(pageno)
end if
if rs1.PageCount>0 then rs1.AbsolutePage=pageno%>
<td class=t1 align="left" width=340>
<a href="Javascript:window.location.reload()">[刷新列表]</a>
<a href="<%=addhtml%>&id=0">[增加]</a>
<a href="javascript:delrows()">[删除]</a>
<a href="javascript:shows()">[有效]</a>
<a href="javascript:noshows()">[无效]</a>
</td>
<td align="right">
<%if rs1.PageCount>1 then%>
[第<b><font color=ff6600><%=pageno%></font></b>页, 共<b><font color=ff6600><%=rs1.PageCount%></font></b>页<b><font color=ff6600><%=rs1.RecordCount%></font></b>条记录
<%if pageno>1 then%>
<a class=r href="<%=htmlname%>&pageno=1">首页</a>
<a class=r href="<%=htmlname%>&pageno=<%=pageno-1%>">上页</a>
<%end if
if pageno<rs1.PageCount then%>
<a class=r href="<%=htmlname%>&pageno=<%=pageno+1%>">下页</a>
<a class=r href="<%=htmlname%>&pageno=<%=rs1.PageCount%>">末页</a>
<%end if%>
<%end if
%>
</td></tr>
</table>
<table width="100%" border="0" cellspacing="1" cellpadding="1" style="font-size:14.5px;line-height:100%">
<tr bgcolor="666699" style="color:#ffffff" align="center">
<td class=bt2> </td>
<td class=bt2 width=50><a href="<%=htmlname%>&plflag=pl&pl=<%=pl1%>"><font color="#ffffff">序号</a></td>
<td class=bt2><a href="<%=htmlname%>&plflag=enable&pl=<%=pl1%>"><font color="#ffffff">是否有效</a></td>
<td class=bt2><a href="<%=htmlname%>&plflag=title&pl=<%=pl1%>"><font color="#ffffff"><%=txtname%></a></td>
<td class=bt2><a href="<%=htmlname%>&plflag=exptxt&pl=<%=pl1%>"><font color="#ffffff">经验值</a></td>
<td class=bt2><font color="#ffffff">表示图</td>
</tr>
<%
i=0
do while not rs1.EOF and i<listcs
if (i mod 2)=1 then
Response.Write("<tr bgcolor=fefefe>")
else
Response.Write("<tr bgcolor=efefef>")
end if
%>
<td width="20" align="center"><input type="checkbox" name="sel" value="<%=trim(rs1("id"))%>"></td>
<td width="50" align="center"><%=rs1("pl")%></td>
<td width="70" align="center">
<%if rs1("enable")=1 then
Response.Write "有效"
else
Response.Write "<font color=red>无效</font>"
end if%>
</td>
<td align=left><a href="<%=addhtml%>&id=<%=rs1("id")%>"><%=trim(rs1("title"))%></a></td>
<td width=80 align=center><%=rs1("exptxt")%></td>
<td align="center" width=250>
<%if rs1("picflag")=1 then%>
<a href="Javascript:editfile('<%=rs1("id")%>','0','<%=tabname%>','<%=picurl%>')"><img src="../upfile/<%=picurl%>/<%=trim(rs1("picname"))%>" border=0></a>
<%else%>
<a href="Javascript:editfile('<%=rs1("id")%>','0','<%=tabname%>','<%=picurl%>')">点击上传</a>
<%end if%>
</td>
</tr>
<%rs1.MoveNext
i=i+1
loop%>
</form>
</table>
</td></tr></table>
<%if showok="1" then%>
<table width="100%" border="0" cellspacing="1" cellpadding="1">
<tr bgcolor="666699" style="color:#ffffff" align="center">
<td>
</td>
</tr>
</table>
<table width="100%" border="0" cellspacing="1" cellpadding="1" style="font-size:14.5px;line-height:100%">
<tr bgcolor="ffffff" style="color:#ffffff" align="center">
<td height=20 align=left><font color=red><b><%=errtxt%></b></font></td>
</tr>
</table>
<table width="100%" border="0" cellspacing="1" cellpadding="1" style="font-size:14.5px;line-height:100%">
<form action="<%=htmlname%>&id=<%=id%>&mode=888&showok=1" method=post name=editform onsubmit="return checkform(editform)">
<tr><td width=70 align=right>序号:</td><td><input type="text" value="<%=pl%>" name="pl" maxlength=15 size=5>
是否显示: <input type="checkbox" value="1" name="showflag" <%if enable=1 then Response.Write "checked"%>>
更新时间:<%=creatdate%>
</td></tr>
<tr><td align=right><%=txtname%>:</td><td><input name=title value="<%=titletxt%>" size=25><font color=red>*</font></td></tr>
<tr><td align=right>经验值:</td><td><input name=exptxt value="<%=exptxt%>" size=15><font color=red>*</font></td></tr>
<tr><td> </td><td><input type="submit" value="确定提交" name=s1> <input type="button" value="取消返回" name=re1 onClick="window.location.href='<%=htmlname%>'"></td></tr>
</form>
</table>
<%end if%>
</td></tr>
</table>
</body>
</html>
<script language="Javascript">
function checkform(form)
{
var flag;
if(form("title").value==""){alert("<%=txtname%>不能为空!");form.title.focus();return false}else{flag=true}
if(form("exptxt").value==""){alert("经验值不能为空!");form.exptxt.focus();return false}else{flag=true}
return flag;
}
function delrows()
{
if (confirm('您确认要删除你所选中的项目吗?')==true)
{
document.listform.action="<%=htmlname%>&mode=999";
document.listform.submit();
}
}
function shows()
{
listform.action="<%=htmlname%>&mode=777";
document.listform.submit();
}
function noshows()
{
document.listform.action="<%=htmlname%>&mode=666";
document.listform.submit();
}
function tj()
{
listform.action="<%=htmlname%>&mode=555";
document.listform.submit();
}
function notj()
{
document.listform.action="<%=htmlname%>&mode=444";
document.listform.submit();
}
function editfile(keyno,pic,tablename)
{
var str
str="../admin/file_upload.asp?" ;
str=str+"keyno="+keyno+"&pic="+pic+"&tablename="+tablename
window.open(str,"mywin","toolbar=no,location=no,directories=no,status=no,resizable=no,menubar=no,scrollbars=yes,width=550,height=400,left=120,top=70")
}
</script>
<%
function checkstring(str)
if str<>"" then
a=instr(str,"http://")
if a<>1 then
checkstring="http://"&str
else
checkstring=str
end if
end if
end function
%>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -