📄 st_stuinfo.aspx
字号:
<%@ Page language="c#" Inherits="STGROUP.ST_WebCourse.ST_Student.ST_StuInfo" CodeFile="ST_StuInfo.aspx.cs" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" >
<HTML>
<HEAD>
<title>ST_StuInfo</title>
<meta content="Microsoft Visual Studio .NET 7.1" name="GENERATOR">
<meta content="C#" name="CODE_LANGUAGE">
<meta content="JavaScript" name="vs_defaultClientScript">
<meta content="http://schemas.microsoft.com/intellisense/ie5" name="vs_targetSchema">
<LINK href="../style.css" type="text/css" rel="stylesheet">
</HEAD>
<body>
<form id="Form1" runat="server">
<TABLE id="Table2" cellSpacing="1" cellPadding="1" border="1">
<TR>
<TD colSpan="4"> </TD>
</TR>
<TR>
<TD>学生编号:</TD>
<TD><asp:textbox id="txtNumber" runat="server" ReadOnly="True">系统自动生成</asp:textbox></TD>
<TD>学生名称:</TD>
<TD><asp:textbox id="txtName" runat="server"></asp:textbox>最多20个字符
</TD>
</TR>
<TR>
<TD>所属院系:</TD>
<TD><asp:DropDownList Runat="server" ID="ddlDept" AutoPostBack="True" CssClass="button" DataTextField="ST_DeptName"
DataValueField="ST_DeptID" OnSelectedIndexChanged="ddlDept_SelectedIndexChanged"></asp:DropDownList>
</TD>
<td>学生学号:</td>
<td>
<asp:textbox id="txtCode" runat="server"></asp:textbox></td>
</TR>
<TR>
<TD>所属专业:</TD>
<TD><asp:DropDownList Runat="server" ID="ddlMajor" CssClass="button" DataTextField="ST_MajorName" DataValueField="ST_MajorID" ></asp:DropDownList>
</TD>
<td>学生性别:</td>
<td>
<asp:RadioButtonList id="rboGender" runat="server" RepeatDirection="Horizontal" Width="30">
<asp:ListItem Value="1" Selected="True">男</asp:ListItem>
<asp:ListItem Value="0">女</asp:ListItem>
</asp:RadioButtonList>
</td>
</TR>
<TR><td colspan=2>如果要修改密码,请输入要修改的密码,点击确定</td>
<TD>密码:</TD>
<TD>
<asp:TextBox id="txtPass" runat="server" TextMode="Password"></asp:TextBox>
</TD>
</TR>
<tr>
<td colspan="4">
<asp:Button id="btnOK" CssClass="button" runat="server" Text="确定" onclick="btnOK_Click"></asp:Button></td>
</tr>
</TABLE>
</form>
</body>
</HTML>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -