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

📄 default.aspx

📁 高校教师测评系统 主要功能: 自行设置测评项和满分; 自行设定测评期限; 学生可给教师提个人意见; 院级管理员可以查看本院所有教师所授课程得分; 超级管理员可以动态增加修改数据库信息;
💻 ASPX
字号:
<%@ page language="C#" autoeventwireup="true" inherits="teacher._Default, App_Web_qjzihoi_" %>
<%@ Register TagPrefix="uc_head" TagName="head" Src="head.ascx" %>
<%@ Register TagPrefix="uc_bottom" TagName="bottom" Src="bottom.ascx" %>

<!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">
    <title>中国矿业大学教师测评系统1.0</title>
    <link href="css/Head.css" rel="stylesheet" type="text/css" />
    <link href="css/Default.css" rel="stylesheet" type="text/css" />
    <link href="css/Bottom.css" rel="stylesheet" type="text/css" />
</head>
<body>
<form id="form1" runat="server">
    <uc_head:head id="uc_head" runat="server"></uc_head:head>
	<div id="middle">
	    <div id="login_bk">
	        <div class="caption">用户登录</div>
	        <div class="login_fg">
                <asp:Label ID="Label1" runat="server" Text="帐号:"></asp:Label>
                <asp:TextBox ID="txtUserName" runat="server" MaxLength="20" Width="150px"></asp:TextBox>
                <asp:RegularExpressionValidator ID="RegularExpressionValidator1" runat="server" ControlToValidate="txtUserName"
                    ErrorMessage="非法的帐号" ValidationExpression="\w+([-+.']\w+)*" Height="20px"></asp:RegularExpressionValidator>
            </div>
	        <div class="login_fg" unselectable="on">
                <asp:Label ID="Label2" runat="server" Text="密码:"></asp:Label>
                <asp:TextBox ID="txtPassword" runat="server" MaxLength="20" Width="150px" TextMode="Password"></asp:TextBox>
                <asp:RegularExpressionValidator ID="RegularExpressionValidator2" runat="server" ControlToValidate="txtPassword"
                    ErrorMessage="非法的密码" Height="20px" ValidationExpression="\w+([-+.']\w+)*"></asp:RegularExpressionValidator></div>
	        <div class="login_fg">
	            <asp:Label ID="Label3" runat="server" Text="类型:"></asp:Label>
                <asp:RadioButton ID="radXueYuan" runat="server" Text="学院" GroupName="lx" />
                <asp:RadioButton ID="radTeacher" runat="server" Text="教师" GroupName="lx" />
                <asp:RadioButton ID="radStudent" runat="server" Text="学生" Checked="True" GroupName="lx" />
            </div>
            <div class="login_fg2">
                <asp:Button ID="butLogin" runat="server" Text="登陆" Width="100px" Height="22px" OnClick="butLogin_Click" />&nbsp;
            </div>
        </div>
	</div>
    <uc_bottom:bottom id="uc_bottom" runat="server"></uc_bottom:bottom>
</form>
</body>
</html>

⌨️ 快捷键说明

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