📄 studentlist.aspx
字号:
<%@ page language="C#" autoeventwireup="true" inherits="ChinaedaCRM.ASPX.StudentList, App_Web_bsmann3t" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<base target=_self ></base>
<META http-equiv="Pragma" content="no-cache">
<title>学生详细信息</title>
<style type="text/css" >
#mainDiv
{
margin-left: auto;
margin-right: auto;
width:600px;
height: 600px
}
body{font-size:12px;color:#3C4D82;margin:0;}
#mainTable
{
border:0px #3C4D82 solid;
border-collapse : collapse ;
cellpadding:0 ;
cellspacing:0;
width: 100%;
text-align: center;
}
#mainTable td
{ border:1px #3C4D82 solid;
border-collapse : collapse ;
}
</style>
</head>
<body>
<form id="form1" runat="server">
<div id="mainDiv">
<table id="mainTable" border="0" cellpadding="0" cellspacing="0" style="width: 100%">
<tr>
<td style="width: 157px" >
</td>
<td >
</td>
</tr>
<tr>
<td style="width: 157px" align="right" >
姓名:</td>
<td align="left" >
<asp:TextBox ID="txtName" runat="server"></asp:TextBox>
<asp:RequiredFieldValidator ID="RequiredFieldValidator1" runat="server" ControlToValidate="txtName"
ErrorMessage="姓名不能为空"></asp:RequiredFieldValidator></td>
</tr>
<tr>
<td style="width: 157px" align="right" >
专业:</td>
<td align="left" >
<asp:TextBox ID="txtSpecial" runat="server"></asp:TextBox></td>
</tr>
<tr>
<td style="width: 157px" align="right" >
性别:</td>
<td align="left" >
<asp:DropDownList ID="radSex" runat="server">
<asp:ListItem Value="0">女</asp:ListItem>
<asp:ListItem Value="1">男</asp:ListItem>
</asp:DropDownList></td>
</tr>
<tr>
<td style="width: 157px; height: 24px" align="right" >
年龄:</td>
<td style="height: 24px" align="left" >
<asp:TextBox ID="txtAge" runat="server" MaxLength="2" Width="36px"></asp:TextBox>
<asp:RegularExpressionValidator ID="RegularExpressionValidator1" runat="server" ControlToValidate="txtAge"
ErrorMessage="年龄为数字" SetFocusOnError="True" ValidationExpression="\d{2}"></asp:RegularExpressionValidator></td>
</tr>
<tr>
<td style="width: 157px; height: 22px;" align="right" >
学员类型:</td>
<td style="height: 22px" align="left" >
<asp:DropDownList ID="radStudentType" runat="server">
<asp:ListItem Value="0">学生</asp:ListItem>
<asp:ListItem Value="1">在职人员</asp:ListItem>
<asp:ListItem Value="2">失业人员</asp:ListItem>
</asp:DropDownList></td>
</tr>
<tr>
<td style="width: 157px; height: 19px" align="right" >
所属机构:</td>
<td style="height: 19px" align="left" >
<asp:TextBox ID="txtAgencies" runat="server"></asp:TextBox></td>
</tr>
<tr>
<td style="width: 157px" align="right" >
学历:</td>
<td align="left" >
<asp:DropDownList ID="radXuli" runat="server">
<asp:ListItem Value="0">高中/中专</asp:ListItem>
<asp:ListItem Value="1">大专</asp:ListItem>
<asp:ListItem Value="2">高职</asp:ListItem>
<asp:ListItem Value="3">本科</asp:ListItem>
<asp:ListItem Value="4">研究生</asp:ListItem>
<asp:ListItem Value="5">博士</asp:ListItem>
</asp:DropDownList></td>
</tr>
<tr>
<td style="width: 157px; height: 19px" align="right" >
电话:</td>
<td style="height: 19px" align="left" >
<asp:TextBox ID="txtTel" runat="server"></asp:TextBox>
<asp:RequiredFieldValidator ID="RequiredFieldValidator2" runat="server" ControlToValidate="txtTel"
ErrorMessage="电话不能为空"></asp:RequiredFieldValidator></td>
</tr>
<tr>
<td style="width: 157px" align="right" >
QQ:</td>
<td align="left" >
<asp:TextBox ID="txtQQ" runat="server"></asp:TextBox></td>
</tr>
<tr>
<td style="width: 157px" align="right" >
Email:</td>
<td align="left" >
<asp:TextBox ID="txtEmail" runat="server"></asp:TextBox></td>
</tr>
<tr>
<td style="width: 157px; height: 19px" align="right" >
跟进状态:</td>
<td style="height: 19px" align="left" >
<asp:DropDownList ID="radState" runat="server">
<asp:ListItem Value="0">未跟踪</asp:ListItem>
<asp:ListItem Value="1">跟进中</asp:ListItem>
<asp:ListItem Value="2">已报名</asp:ListItem>
<asp:ListItem Value="3">下期报名</asp:ListItem>
<asp:ListItem Value="4">继续跟进</asp:ListItem>
<asp:ListItem Value="5">放弃</asp:ListItem>
</asp:DropDownList></td>
</tr>
<tr>
<td style="width: 157px" align="right" >
跟进用户:</td>
<td align="left" >
<asp:TextBox ID="txtFollowUser" runat="server"></asp:TextBox>
<asp:RequiredFieldValidator ID="RequiredFieldValidator3" runat="server" ControlToValidate="txtFollowUser"
ErrorMessage="跟进用户不能为空"></asp:RequiredFieldValidator></td>
</tr>
<tr>
<td style="width: 157px" align="right" >
备注:</td>
<td align="left" >
<asp:TextBox ID="txtMemo" runat="server" Height="92px" TextMode="MultiLine" Width="257px"></asp:TextBox></td>
</tr>
<tr>
<td align="center" colspan="2" >
<asp:Button ID="btnOK" runat="server" Text="确 认" OnClick="btnOK_Click" /></td>
</tr>
</table>
</div>
</form>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -