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

📄 tea_editpat.asp

📁 在线学生成绩管理系统的功能包括:所在班级,所修科目,成绩记录,家长管理.......
💻 ASP
字号:
<!--#include file="conn.asp" -->
<!--#include file="error.asp" -->
<!--#include file="login_menu.asp" -->
<!--#include file="md5.asp" -->
<html>
<head>
<title><%=site_name%></title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<link href="25175com_221.css" rel="stylesheet" type="text/css">
</head>
<body bgcolor="#FFFFFF" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
<!-- ImageReady Slices (25175_sub2.psd) -->
<table width="100%"  border="0" cellspacing="0" cellpadding="0">
  <tr>
    <td background="images/index_02.gif"><table width="898" border="0" cellspacing="0" cellpadding="0">
      <tr>
        <td>
<!--#include file="top.asp" -->
<table width="898" border="0" cellspacing="0" cellpadding="0">
  <tr>
    <td width="202" valign="top"><%call login()%></td>
    <td width="696" valign="top"><table width="695" border="0" cellspacing="0" cellpadding="0">
      <tr>
        <td><img src="images/index_15.gif" width="695" height="48" alt=""></td>
      </tr>
      <tr>
        <td><table width="695" border="0" cellspacing="0" cellpadding="0">
          <tr>
            <td width="32"><img src="images/index_17.gif" width="32" height="579" alt=""></td>
            <td valign="top" bgcolor="#FFFFFF"><table width="619" border="0" cellpadding="0" cellspacing="0" bgcolor="#FFFFFF">
              <tr>
                <td><table width="619" border="0" cellpadding="0" cellspacing="0" bgcolor="#FFFFFF">
                  <tr>
                    <td width="340">&nbsp;</td>
                    <td><table width="100%"  border="0" cellspacing="0" cellpadding="0">
                      <tr>
                        <td width="4%"><div align="right"><img src="images/index_19.gif" width="6" height="20" alt=""></div></td>
                        <td width="93%" bgcolor="#E4E7DB">&nbsp;&nbsp;<a href="index.asp">首页</a> &gt; <a href="tea_pat.asp">家长管理</a> &gt; 编辑资料</td>
                        <td width="3%"><img src="images/index_21.gif" width="7" height="20" alt=""></td>
                      </tr>
                    </table></td>
                  </tr>
                </table></td>
              </tr>
              <tr>
                <td height="80" valign="bottom"><table width="97%"  border="0" align="right" cellpadding="0" cellspacing="0">
                  <tr>
                    <td><div align="center"><img src="images/index_30.gif" width="6" height="70" alt=""></div></td>
                    <td width="600" background="images/index_31.gif">
<%
  if master25175="" then
      founderr="true"
      errmsg="<li>你还没有登陆,请先登陆系统"
	  call errormsg()
  else
      set rs=conn.execute("select c.cid from class c,teacher t where c.cteacher=t.tid and t.tuser='"&master25175&"'")
	  if rs.eof and rs.bof then
	      founderr="true"
	      errmsg="<li>你不是班主任,无家长管理权限"
		  call errormsg()
	  else
	      response.write"作为班主任,你可以修改本班级内家长的帐号、姓名和密码"
	  end if
	  set rs=nothing
  end if
%>
                      </td>
                    <td><div align="center"><img src="images/index_34.gif" height="70" alt=""></div></td>
                  </tr>
                </table></td>
              </tr>
              <tr>
                <td><table width="90%"  border="0" align="center" cellpadding="0" cellspacing="0">
                  <tr>
                    <td height="419" valign="top">
<%
  if founderr<>"true" then
  dim id
  if request("action")="save" then
      dim puser,pname,password,suser
	  id=request("id")
	  puser=trim(request.form("puser"))
	  pname=trim(request.form("pname"))
	  password=request.form("password")
	  suser=request.form("suser")
	  if puser="" then
	      founderr="true"
		  errmsg="<li>帐号不能为空"
	  else
	      set rs=conn.execute("select pid from pat where puser='"&puser&"' and pid<>"&id&"")
		  if not (rs.eof and rs.bof) then
		      founderr="true"
		      errmsg=errmsg&"<li>该帐号名已存在"
		  end if
		  set rs=nothing
	  end if
	  if pname="" then pname="-"
	  if password="" then
	      password=" "
	  else
	      password=" password='"&md5(password)&"', "
	  end if
	  if suser="" then
	      founderr="true"
		  errmsg=errmsg&"<li>请选择对应子女"
	  else
	      set rs=conn.execute("select s.sname from student s,pat p where p.suser=s.suser and p.suser='"&suser&"' and pid<>"&id&"")
		  if not (rs.eof and rs.bof) then
		      founderr="true"
		      errmsg=errmsg&"<li>该学生的家长帐号已存在"
		  end if
		  set rs=nothing
	  end if
	  if founderr="true" then
	      call errormsg()
	  else
	      conn.execute("update pat set "&password&" puser='"&puser&"',pname='"&pname&"',suser='"&suser&"' where pid="&id&"")
    	  backurl="tea_editpat.asp?id="&id&""
          rigmsg="<li>编辑一位家长资料成功<li><a href='tea_pat.asp'>返回家长管理</a>"
          call rightmsg()
	  end if
  else
      dim rs2
	  id=request("id")
	  set rs=conn.execute("select p.puser,p.pname,p.password,p.suser from pat p,student s,class c,teacher t where p.suser=s.suser and s.cla_id=c.cid and c.cteacher=t.tid and t.tuser='"&master25175&"' and p.pid="&id&"")
	  if rs.eof and rs.bof then
		  errmsg="<li>ID参数错误"
		  call errormsg()
	  else
%>
<form name="form1" method="post" action="?action=save&id=<%=id%>">
  <table width="100%" align="center" cellpadding="2" cellspacing="0" <%=table_com%>>
    <tr>
      <td><div align="center">家长帐号</div></td>
      <td><input name="puser" type="text" id="puser" value="<%=rs("puser")%>" size="10"></td>
    </tr>
    <tr>
      <td><div align="center">家长姓名</div></td>
      <td><input name="pname" type="text" id="pname" value="<%=rs("pname")%>" size="10"></td>
    </tr>
    <tr>
      <td><div align="center">登陆密码</div></td>
      <td><input name="password" type="password" id="password" size="10"></td>
    </tr>
    <tr>
      <td><div align="center">对应子女</div></td>
      <td><select name="suser" id="suser">
<%
  set rs2=conn.execute("select suser,sname from student s,class c,teacher t where s.cla_id=c.cid and c.cteacher=t.tid and t.tuser='"&master25175&"' order by c.cid,s.sid")
  do while not rs2.eof
      if rs2("suser")=rs("suser") then
          response.write"<option value='"&rs2("suser")&"' selected>"&rs2("sname")&"</option>"
	  else
	      response.write"<option value='"&rs2("suser")&"'>"&rs2("sname")&"</option>"
	  end if
	  rs2.movenext
  loop
  set rs2=nothing
%>
      </select></td>
    </tr>
    <tr>
      <td height="50" colspan="2"><div align="center"> (若不修改密码请留空)<br>
              <input type="submit" name="Submit3" value="保 存">
              <input type="reset" name="Submit4" value="重 置">
              <input type="button" name="Submit5" value="返 回" onClick="javascript:history.go(-1)">
      </div></td>
    </tr>
  </table>
</form>
<%
      set rs=nothing
	  end if
  end if
  end if
%>				  </td>
                  </tr>
                  <tr>
                    <td height="18"><div align="center"></div></td>
                  </tr>
                </table></td>
              </tr>
              <tr>
                <td>&nbsp;</td>
              </tr>
              <tr>
                <td><img src="images/index_78.gif" alt="" width="620" height="24"></td>
              </tr>
            </table></td>
            <td width="43"><img src="images/index_22.gif" width="43" height="579" alt=""></td>
          </tr>
        </table></td>
      </tr>
    </table></td>
  </tr>
</table></td>
      </tr>
      <tr>
        <td><!--#include file="bottom.asp" -->
</td>
      </tr>
    </table></td>
  </tr>
</table>
<!-- End ImageReady Slices -->
</body>
</html>

⌨️ 快捷键说明

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