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

📄 manageruseradd6.asp

📁 网络考试系统最终备份
💻 ASP
字号:
<!--#include file="conn.inc"-->
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>添加用户</title>
</head>

<body>
<table width="100%" height="25" border="0" cellspacing="0" bordercolor="#111111" id="AutoNumber2" style="border-collapse: collapse">
  <tr>
    <td width="100%">当前位置:<a href="news.asp">系统管理</a> &gt;<a href="manageruser.asp">人员管理</a> &gt; 添加用户</td>
  </tr>
</table>
<form name="form1" method="post" action="managerusersave.asp?vid=1">
  <table width="100%"  border="1">
    <tr bgcolor="#CCCCCC">
      <td colspan="2"><div align="center"><strong>请选择教师所教科目</strong></div></td>
    </tr>
    <tr>
      <td width="14%" height="26"><div align="center"><strong>科目</strong></div></td>
      <td width="86%"><select name="subject" id="subject">
        <option>选择科目</option>
		<%
		session("TempRole")=request("role")
		sql="select * from subject_info"
		set rs=server.createobject("adodb.recordset")
        rs.open sql,conn,3,2
		while not rs.eof
		%>
        <option value="<%=rs("SubID")%>"><%=rs("SubName")%></option>
		<%
		rs.movenext
		wend
		rs.close
		%>
      </select></td>
    </tr>
    <tr>
      <td colspan="2"><div align="center">
        <input type="submit" name="Submit" value="保存">
      </div></td>
    </tr>
  </table>

</form>
</body>
</html>

⌨️ 快捷键说明

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