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

📄 editpassword.aspx

📁 高校教师测评系统 主要功能: 自行设置测评项和满分; 自行设定测评期限; 学生可给教师提个人意见; 院级管理员可以查看本院所有教师所授课程得分; 超级管理员可以动态增加修改数据库信息;
💻 ASPX
字号:
<%@ page language="C#" autoeventwireup="true" inherits="teacher.EditPassword, 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 id="Head1" runat="server">
    <title>修改密码</title>
    <link href="css/EditPassword.css" rel="stylesheet" type="text/css" />
    <link href="css/Head.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="txtPassword" runat="server" MaxLength="20" Width="150px" TextMode="Password"></asp:TextBox>
                <asp:RegularExpressionValidator ID="RegularExpressionValidator1" runat="server" ControlToValidate="txtPassword"
                    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="txtPassword2" runat="server" MaxLength="20" Width="150px" TextMode="Password"></asp:TextBox>
                <asp:CompareValidator ID="CompareValidator1" runat="server" ControlToCompare="txtPassword"
                    ControlToValidate="txtPassword2" ErrorMessage="两次输入不同"></asp:CompareValidator></div>
            <div class="login_fg2">
                <asp:Button ID="butOK" runat="server" Text="确定" Width="60px" Height="22px" OnClick="butOK_Click" />
                <asp:Button ID="butExit" runat="server" Text="取消" Width="60px" Height="22px" OnClick="butExit_Click" />
            </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 + -