📄 clsadm_resign.asp
字号:
<!--#INCLUDE FILE="conn.asp" -->
<!--#INCLUDE FILE="const.asp" -->
<!--#INCLUDE FILE="char.asp" -->
<!--#INCLUDE FILE="checkuser.asp" -->
<!--#INCLUDE FILE="theme.asp" -->
<html>
<head>
<title><%=SchoolmateName%>——班级管理员申请</title>
<meta content="text/html; charset=gb2312" http-equiv="Content-Type">
<link href="txl.css" type="text/css" rel="stylesheet">
<script language="JavaScript" src="script/jsfun.js">
</script>
</head>
<body bgColor="<%=bodycolor%>" text="#000000">
<%
if request("action")="resign" then
call isjoinclass(1)
if isclassadmin(1)=true then call resign()
else
call confirm()
end if
call endconnection()
sub confirm()
%>
<br><p>
<FORM action="clsadm_resign.asp?action=resign" method=post name="userform" onsubmit="return submitonce(this);">
<table cellpadding=0 cellspacing=0 border=0 width=500 bgcolor=#ccccff align=center>
<tr>
<td>
<table cellpadding=6 cellspacing=1 border=0 width=100% bgcolor=<%=tablebordercolor%>>
<TBODY>
<TR align=middle bgcolor=<%=tabletitlecolor%>>
<TD height=18><b>辞去班级管理员职务
</b></TD></TR>
<TR bgcolor=<%=tablebodycolor2%>>
<TD height=80 valign=center class=mp> <li>此项操作您将辞去本班的管理员身份。</li>
<li>注销后您将不能以管理员身份管理此班级。</li>
<li>在还没有其他人申请管理员职务是时,您仍然可以再成为本班的管理员。</li>
</TD>
</TR>
<TR bgcolor=<%=tablebodycolor2%>>
<TD>您是否要辞去本班的管理员身份?</TD>
</TR>
<TR align=middle bgcolor=<%=Tabletitlecolor%> height=20>
<TD><DIV align=center><INPUT value="我要辞职" name=Submit type=submit class=btn>
</DIV></TD></TR></TBODY></TABLE></td></tr></table>
</FORM>
<p align="center"><br>
<br>
</p>
</body>
</html>
<%
end sub
sub resign()
sql="update class set admin='"&"' where classid="&clsid
conn.execute(sql)
sql="update student set isadmin=0,point=point+"&PResignAdmin&" where userid='"&membername&"'"
conn.execute(sql)
call success()
end sub
sub success()
%>
<br><br>
<table cellpadding=0 cellspacing=0 border=0 width=75% align=center bgcolor=<%=tablebordercolor%>>
<tr>
<td>
<table cellpadding=3 cellspacing=1 border=0 width=100%>
<tr align="center">
<td width="100%" bgcolor=<%=tabletitlecolor%>>成功:班级管理员辞职</td>
</tr>
<tr align="center">
<td width="100%" bgcolor=<%=tablebodycolor2%>><br> 您已经成功的辞去了本班的管理员身份!</b><br><br>
</td>
</tr>
<tr align="center">
<td width="100%" bgcolor=<%=tabletitlecolor%>>
<a href="javascript:history.go(-1)"> << 返回上一页</a>
</td>
</tr>
</table>
</td>
</tr>
</table>
<%
end sub
%>
<!--#INCLUDE FILE="footer.asp" -->
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -