程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> ASP.NET >> 關於ASP.NET >> 構建ASP.NET MVC4+EF5+EasyUI+Unity2.x注入的後台管理系統(3)

構建ASP.NET MVC4+EF5+EasyUI+Unity2.x注入的後台管理系統(3)

編輯:關於ASP.NET

漂亮系統登陸界面

良好的登錄頁面是系統的唯一入口,良心說,我是很難做出漂亮的登錄界面,所以有點違背本文的標題,因為我不是一個美工。汗..!

第二講我已經發布了源碼,我們添加一個Account空控制器,雖然後台未實現,但是以後我們就要用到了。

添加index視圖,以下代碼

@{
        
    Layout = null;
      
}
<!DOCTYPE html>
<html>
<head>
    <title>系統登錄</title>
    <script src="/Scripts/jquery.min.js" type="text/javascript"></script>
    @Styles.Render("~/Content/themes/blue/css")
    <link href="~/Content/Site.css" rel="stylesheet"  />
    <style type="text/css">
        body
        {
            letter-spacing: 1px;
            color: #444;
        }
    
        #LoginTb
        {
            font-size: 14px;
        }
    
        #LoginTb
        {
            font-size: 12px;
        }
    
            #LoginTb input
            {
                width: 190px;
                height: 24px;
                line-height: 24px;
            }
    </style>
    <script type="text/javascript">
        $(function () {
            $("#LoginSys").click(function () {
                LoginSys();
            });
            $("#UserName").keydown(function (e) {
                var curkey = e.which;
                if (curkey == 13) {
                    LoginSys();
                    return false;
                }
            });
            $("#Password").keydown(function (e) {
                var curkey = e.which;
                if (curkey == 13) {
                    LoginSys();
                    return false;
                }
            });
            $("#ValidateCode").keydown(function (e) {
                var curkey = e.which;
                if (curkey == 13) {
                    LoginSys();
                    return false;
                }
            });
    
    
    
        });
    
        function LoginSys() {
            $("#mes").html("");
            $("#UserName").removeClass("input-validation-error");
            $("#Password").removeClass("input-validation-error");
            $("#ValidateCode").removeClass("input-validation-error");
            if ($.trim($("#UserName").val()) == "") {
                $("#UserName").addClass("input-validation-error").focus();
                $("#mes").html("用戶名不能為空!");
                return;
            }
            if ($.trim($("#Password").val()) == "") {
                $("#Password").addClass("input-validation-error").focus();
                $("#mes").html("密碼不能為空!");
                return;
            }
            if ($.trim($("#ValidateCode").val()) == "") {
                $("#ValidateCode").addClass("input-validation-error").focus();
                $("#mes").html("驗證碼不能為空!");
                return;
            }
            $("#Loading").show();
    
            alert(1);
            return false;
        }
         
    </script>
</head>
<body>
    
    <div>
        <div class="define-head" style="height: 67px;">
            <div class="define-logo">
                <div id="LoginTopLine">YmNets.cnblogs.com</div>
                <div id="LoginBotoomLine">MVC4+EF5.0+EasyUI</div>
            </div>
    
        </div>
    </div>
    <div style="margin: 0 auto; margin-top: 100px; width: 800px;">
        <table style="width: 800px; margin: 0 auto;">
            <tr>
                <td><img src="/Content/Images/account.jpg"></td>
                <td style="width: 310px;">
    
                    <table id="LoginTb" style="margin-top: 10px; background: #fff; width: 100%; height: 230px; border: 1px #ccc solid;">
                        <tr>
                            <td colspan="2" style="font-size: 18px;  font-weight: bold; padding: 5px 20px;">歡迎登錄
                            </td>
    
                        </tr>
                        <tr>
                            <td style="width: 80px; text-align: right">用戶名:
                            </td>
                            <td>
                                <input id="UserName" name="UserName" type="text"  />
                            </td>
                        </tr>
                        <tr>
                            <td style="width: 80px; text-align: right;">密 碼:
                            </td>
                            <td>
                                <input id="Password" name="Password" type="password"  />
                            </td>
                        </tr>
    
                        <tr>
                            <td style="width: 80px; text-align: right">驗證碼:
                            </td>
                            <td>
                                   
                            </td>
                        </tr>
    
    
                        <tr>
    
                            <td colspan="2">
                                <table style="width: 100%;">
                                    <tr>
                                        <td style="width:40px;">&nbsp;</td>
                                        <td>
                                            <div id="mes" class="field-validation-error">
                                            </div>
                                            <div id="Loading" style="display: none" class='panel-loading'><font color='#000'>加載中...</font></div>
                                        </td>
                                        <td style="width: 100px;"><a id="LoginSys" href="javascript:void(0)" class="easyui-linkbutton l-btn"><span class="l-btn-left"><span class="l-btn-text icon-ok" style="padding-left: 20px;">登錄</span></span></a>
                                        </td>
                                    </tr>
    
                                </table>
    
                            </td>
                        </tr>
    
                    </table>
                </td>
            </tr>
        </table>
    
    </div>
    <div style="background:#f1f1f1; height:40px; width:100%; text-align:center; line-height:40px;border-top:1px #ccc solid;bottom:0; position:absolute">
        Copyright ymnet2010-2013
    </div>
</body>
</html>

查看本欄目

運行效果效果圖:http://localhost:1332/account

其實素材好難找。大家有好的素材不妨共享給我一下,謝謝啦[email protected]或者修改好的源碼

作者:YmNets

出處:http://ymnets.cnblogs.com/

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved