-
Notifications
You must be signed in to change notification settings - Fork 0
/
ModifiedPassword.aspx
68 lines (64 loc) · 2.9 KB
/
ModifiedPassword.aspx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="ModifiedPassword.aspx.cs" Inherits="ModifiedPassword" %>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head id="Head1" runat="server">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<title></title>
<style type="text/css">
.auto-style1 {
height: 32px;
}
</style>
</head>
<body style="margin: 0; padding: 0; font-size: 14pt; border-top-style: none; font-family: Arial; border-right-style: none; border-left-style: none; border-bottom-style: none; background:url(<%= backgroundImage %>) no-repeat center top;">
<form id="form1" runat="server">
<asp:ScriptManager ID="ScriptManager1" runat="server"/>
<div align="center">
<div style="height: 270px"></div>
<table style="width: 750px; height:291px; padding-left:50px ">
<tr style="height:auto;">
<td align="center" style="vertical-align: top">
<table>
<tr>
<td>
<asp:Label ID="Label1" runat="server" Text="旧密码:"></asp:Label>
</td>
<td>
<asp:TextBox ID="TbOriginCode" runat="server" TextMode="Password"></asp:TextBox>
</td>
</tr>
<tr>
<td>
<asp:Label ID="Label2" runat="server" Text="新密码:"></asp:Label>
</td>
<td>
<asp:TextBox ID="TbNewCode" runat="server" TextMode="Password"></asp:TextBox>
</td>
</tr>
<tr>
<td>
<asp:Label ID="Label3" runat="server" Text="确认新密码:"></asp:Label>
</td>
<td>
<asp:TextBox ID="TbCheckNewCode" runat="server" TextMode="Password"></asp:TextBox>
</td>
</tr>
<tr>
<td>
<asp:Button ID="BtnModify" runat="server" Text="确认修改"
onclick="BtnModify_Click" />
</td>
<td>
<asp:Button ID="BtnCancel" runat="server" Text="取消修改"
onclick="BtnCancel_Click" />
</td>
</tr>
</table>
</td>
</tr>
</table>
<asp:Literal ID="ClientScriptArea" runat="server"></asp:Literal>
</div>
</form>
</body>
</html>