AJAX實現用戶登錄

-----------------------WebService1--------------------------------

 // 若要允許使用 ASP.NET AJAX 從腳本中調用此 Web 服務,請取消對下行的註釋。
    [System.Web.Script.Services.ScriptService]
    public class WebService1 : System.Web.Services.WebService
    {

        [WebMethod]
        public string HelloWorld()
        {
            return "Hello World";
        }

        [WebMethod]
        public string Login(string username, string pwd)
        {
            if (username == "admin" && pwd == "111111")
            {
                return "true";
            }
            else
            {
                return "false";
            }
        }
    }


------------ HTMLPage1.htm--------------------------

<html xmlns="http://www.w3.org/1999/xhtml">

<head>
    <title></title>
    <script src="js/Jquery1.7.js" type="text/javascript"></script>
    <script type="text/javascript">
        $(function () {

            $('#Button1').click(function () {
                var username = $('#txtUserName').val();
                var pwd = $('#txtPwd').val();
                $.ajax({
                    type: "post",
                    contentType: "application/json",
                    url: "WebService1.asmx/Login",
                    data: "{username:'" + username + "',pwd:'" + pwd + "'}",
                    success: function (bukeyi) {
                        if (bukeyi.d == 'true') {
                            window.location = 'HTMLPage2.htm';
                        }
                        else {
                            $('#divinfo').text("用戶名或密碼錯誤");
                        }
                    }
                })
            })
        })
    </script>
</head>
<body>
用戶名<input id="txtUserName" type="text" /><br />
密碼<input id="txtPwd" type="text" /><br />
    <input id="Button1" type="button" value="登錄" /><br />
    <div id="divinfo"></div>
</body>
</html>
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章