1 <%@ Page Language="C#" Title="::登录::" AutoEventWireup="true" CodeFile="Login.aspx.cs" Inherits="MCES.Web.LoginPage" MasterPageFile="~/MasterPage.master"%>
3 <asp:Content ID="Content1" ContentPlaceHolderID="head" runat="server">
4 <style type="text/css">
5 #login{ margin-top:160px;}
7 <script type="text/javascript">
8 IsTopWindow = function()
15 parent.location.href = window.location.href;
19 if(! IsTopWindow()) PageOnLoad = null;
23 <asp:Content ID="Content2" ContentPlaceHolderID="content" runat="server">
27 <div style="width:320px;" class="x-box-blue" id="login">
28 <div class="x-box-tl"><div class="x-box-tr"><div class="x-box-tc"></div></div></div>
29 <div class="x-box-ml"><div class="x-box-mr"><div class="x-box-mc">
31 <h3 style="margin-bottom:5px;"><%=SystemName%> <%=SystemVersion%></h3>
32 <div class="x-form-bd" id="container">
36 <asp:Login ID="loginCtrl" runat="server" DisplayRememberMe="False" OnAuthenticate="loginCtrl_Authenticate" OnLoginError="loginCtrl_LoginError">
38 <table cellpadding="0" cellspacing="0" border="0" width="100%">
41 <!-- Login Control Template Start -->
42 <table cellpadding="0" cellspacing="0" border="0" width="100%">
44 <td nowrap><asp:Label ID="lblLoginName" runat="server" Text="登 录 名:" /></td>
45 <td style="padding-left:5px;white-space:nowrap">
46 <asp:TextBox ID="UserName" runat="server" Width="180px" MaxLength="20"/>
47 <asp:RequiredFieldValidator ID="RequiredFieldValidator1" runat="server" ControlToValidate="UserName"
48 Display="static" ErrorMessage="*" EnableClientScript="True"></asp:RequiredFieldValidator>
52 <td style="height: 26px;"><asp:Label ID="lblPassword" runat="server" Text="密 码:"/></td>
53 <td style="height: 26px;padding-left:5px; white-space:nowrap"><asp:TextBox ID="Password" runat="server" Width="180px" TextMode="Password" MaxLength="16" />
54 <asp:RequiredFieldValidator ID="RequiredFieldValidator2" runat="server" ControlToValidate="Password"
55 Display="Static" ErrorMessage="*" EnableClientScript="True"></asp:RequiredFieldValidator>
58 <tr><td colspan="2"><hr size="1" width="100%" /></td></tr>
59 <tr><td colspan="2" align="right">
60 <asp:Button ID="btnLogin" Text=" 登 录 " runat="server" CommandName="Login" Height="22px"/>
62 <tr style="height:4px"><td colspan="2" style="height:4px"></td></tr>
64 <!-- Login Control Template End -->
77 <div class="x-box-bl"><div class="x-box-br"><div class="x-box-bc"></div></div></div>