| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Login.aspx.cs" Inherits="LYFZ.WeixinServers.WeiXinAPP.Login" %>
- <!--#include file="html/head.html" -->
- <form id="form1" runat="server">
- <div class="row-fluid">
- <div class="dialog">
- <div class="block">
- <p class="block-heading">登录</p>
- <div class="block-body">
- <label>登录帐号</label>
- <input runat="server" id="txtuser" type="text" class="span12" />
- <label>密码</label>
- <input runat="server" id="txtpwd" type="password" class="span12" />
- <%--<a href="#" class="btn btn-primary pull-right">登录</a>--%>
- <asp:LinkButton ID="lbtnLogin" runat="server" OnClick="lbtnLogin_Click" class="btn btn-primary pull-right">登录</asp:LinkButton><label class="remember-me"></label>
- <label class="remember-me"><input id="cbxJiZhumima" runat="server" type="checkbox" />记住密码</label>
- <div class="clearfix"></div>
- </div>
- </div>
- <!--<p class="pull-right" style=""><a href="#" target="blank">Theme by Portnine</a></p>
- <p><a href="reset-password.html">Forgot your password?</a></p>-->
- </div>
- </div>
- <script type="text/javascript">
- $(document).ready(function () {
- if ($("#<%=this.txtpwd.ClientID %>").val() == "") {
- $("#<%=this.txtpwd.ClientID %>").val("<%=this.CookieSavePassword %>");
- $("#<%=this.txtpwd.ClientID %>").focus();
- }
- if ($("#<%=this.txtuser.ClientID %>").val() == "") {
- $("#<%=this.txtuser.ClientID %>").focus();
- } else {
- $("#<%=this.lbtnLogin.ClientID %>").focus();
- }
-
- $("input,body").keyup(function (event) {
- if (event.which == 13)
- {
- $("#<%=this.lbtnLogin.ClientID %>").focus();
- eval($("#<%=this.lbtnLogin.ClientID %>").attr("href"));
- }
- });
- });
- </script>
- </form>
- <!--#include file="html/bottom.html" -->
-
-
-
|