gusucode.com > ASP+ACCESS学生管理系统(源代码+论文) > ASP+ACCESS学生管理系统(源代码+论文)\zjw\add-info.asp

    <!--#include file="data.asp"-->
<!--#include file="user.asp"-->
<html>

<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<meta name="GENERATOR" content="Microsoft FrontPage 4.0">
<meta name="ProgId" content="FrontPage.Editor.Document">
<title>录入学生信息</title>
<link rel="stylesheet" href="style.css">
</head>

<body topmargin="0">
<!--#include file="top.asp"-->
<div align="center">
<center>
<table width="738" height="35" cellspacing="0" cellpadding="0">
<td background="images/top_1.jpg">&nbsp; <a href="info-manager.asp">学生信息列表</a>
| <a href="add-info.asp">录入学生信息</a> | <a href="search2.asp">查询学生信息</a></table>
</center>
</div>
<div align="center">
<center>
<table border="0" width="500" cellspacing="0" cellpadding="0">
<tr>
<td width="100%">
<form method="POST" action="addxx1.asp">
<table border="1" width="100%" bordercolorlight="#000000" cellspacing="0" cellpadding="5" bordercolordark="#FFFFFF">
<tr>
<td width="100%" colspan="2">
<p align="center">添加学生信息</td>
</tr>
<tr>
<td width="37%" align="right">学号:</td>
<td width="63%" align="left"><input type="text" name="user_number" size="20"></td>
</tr>
<tr>
<td width="37%" align="right">姓名:</td>
<td width="63%" align="left"><input type="text" name="user_name" size="20"></td>
</tr>
<tr>
<td width="37%" align="right">准考证号:</td>
<td width="63%" align="left"><input type="text" name="user_testnumber" size="20"></td>
</tr>
<tr>
<td width="37%" align="right">身份证号:</td>
<td width="63%" align="left"><input type="text" name="user_idnumber" size="20"></td>
</tr>
<tr>
<td width="37%" align="right">性别:</td>
<td width="63%" align="left"><input type="radio" value="男" checked name="user_sex">男
<input type="radio" name="user_sex" value="女">女</td>
</tr>
<tr>
<td width="37%" align="right">出生年月:</td>
<td width="63%" align="left"><input type="text" name="user_time" size="20" value="1983-03-13">输入格式按标准输入</td>

</tr>
<tr>
<td width="37%" align="right">籍贯:</td>
<td width="63%" align="left"><input type="text" name="user_address" size="30"></td>
</tr>
<tr>
<td width="37%" align="right">联系电话:</td>
<td width="63%" align="left"><input type="text" name="user_tel" size="20"></td>
</tr>
<tr>
<td width="37%" align="right">专业:</td>
<td width="63%" align="left"><input type="text" name="user_major" size="20"></td>
</tr>
<tr>
<td width="37%" align="right">班级:</td>
<td width="63%" align="left"><select size="1" name="user_class">
<%set rs1=server.createobject("adodb.recordset")%>
<%sql1="select * from class"%>
<%rs1.open sql1,conn,3,3%>
<%do while not rs1.eof%>
<option value="<%=rs1("class")%>"><%=rs1("class")%></option>
<%rs1.movenext%>
<%loop%>
<%rs1.close%>

</select></td>
</tr>
<tr>
<td width="37%" align="right" valign="top">高考成绩:</td>
<td width="63%" align="left"><textarea rows="3" name="user_collogetestach" cols="30"></textarea></td>
</tr>


<tr>
<td width="100%" colspan="2">
<p align="center"><input type="submit" value="提交" name="B1"><input type="reset" value="全部重写" name="B2"></td>
</tr>
</table>
</form>
</td>
</tr>
</table>
</center>
</div>

</body>

</html>