使用C#、Ajax、Jquery的Web服务不适用于ASP.Net

本文关键字:不适用 适用于 ASP 服务 Net Ajax Jquery 使用 Web | 更新日期: 2023-09-27 18:00:58

我在C#中创建了一个WebService。我有一个方法:
我用相同的方法在每页上创建了一个AndroidWebservices.asmx和一个Default.aspx

[System.Web.Services.WebMethod]
public bool CheckLogin(string email, string password)
{
    //Get the User Information
    DB.User cur_user = DB.User.ByEmail(email.Trim());
    if (cur_user.CheckPassword(password)) {
       return true;
    } else {
       return false;
    }
}

对于我放入
的Default.asxp页面<asp:ScriptManager ID="ScriptManager1" EnablePageMethods="true" EnablePartialRendering="true" runat="server"></asp:ScriptManager>

对于AndroidWebService.asmx,我取消了注释
[System.Web.Script.Services.ScriptService]


这项服务正在http://localhost:49524/和我公司的.com域以及上运行

我在tomcat服务器上创建了一个新目录:

http://  localhost:8080/

这个的代码是一个简单的表

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
    "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
    <meta name="viewport" content="user-scalable=no, width=device-width" />
    <link rel="stylesheet" type="text/css" href="css/iphone.css">
    <link rel="stylesheet" 
        href="http://code.jquery.com/ui/1.9.2/themes/base/jquery-ui.css" />
    <script src="http://code.jquery.com/jquery-1.8.3.js"></script>
    <script src="http://code.jquery.com/ui/1.9.2/jquery-ui.js"></script>
    <script src="js/iphone.js"></script>
    <title></title>
</head>
<body>
    <div id="container">
        <div id="header">
            <h1><a></a></h1>
            <div class="loginContainer">
                <table cellpadding="0" cellspacing="0" width="100%">
                    <tr>
                        <td valign="top" style="width:100px">
                            <div class="rounded-end">email</div>
                        </td>
                        <td valign="top">
                            <input type="text" id="email" class="login" />
                        </td>
                    </tr>
                    <tr>
                        <td valign="top" style="width:100px">
                            <div class="rounded-end">password</div>
                        </td>
                        <td valign="top">
                            <input type="password" id="password" 
                                class="login" />
                        </td>
                    </tr>
                </table>
                <input type="button" class="loginButton" value="login" 
                    onclick="loginCheck(); return false;"/>
            </div>      
        </div>
    </div>
</body>
</html>

和Javascript:

function loginCheck() {
    var u = $('#email').val();
    var p = $('#password').val();
    $.ajax({
        type: "POST",
        url: "http://localhost:49524/mobile/Android/Default.aspx/CheckLogin",
        data: JSON.stringify({email: u, password: p}),
        contentType: "application/json; charset=utf-8",
        dataType: "json",
        success: function (msg) {
            alert(msg);
        }
    });
}

我尝试过的东西:

dataType: "json"

不返回任何内容。

dataType: "jsonp"

返回页面。。即

"<!doctype><html> ...... "

每当我运行Default.aspx作为我的url时,函数就会返回页面的html/文本,我可以将代码加上+querystring放在url中,然后我就可以返回页面。。但没有数据它似乎并没有调用该方法,而只是返回页面。。如上所述。。我想要的是返回一个true或false,以确保用户登录到下一页。

我非常感谢人们的评论,在再次工作之前,我不得不回到办公室。一旦我得到一个有效的答案,我就会标记一个被接受的答案。

使用C#、Ajax、Jquery的Web服务不适用于ASP.Net

我认为这是因为您将方法标记为受保护。将其标记为公开,然后重试。

所以

protected bool CheckLogin(string email, string password)

成为

public bool CheckLogin(string email, string password)

我使用了一个$.jsonp plugin,它使ajax调用变得更容易
我还必须把这个放在我的webconfig:中

<webServices>
  <protocols>
    <add name="HttpGet"/>
    <add name="HttpPost"/>
  </protocols>
</webServices>