使用jQuery调用ASP.NET PageMethod/WebMethod – 返回整个页面

前端之家收集整理的这篇文章主要介绍了使用jQuery调用ASP.NET PageMethod/WebMethod – 返回整个页面前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
jQuery 1.3.2,ASP.NET 2.0。对PageMethod(WebMethod)进行AJAX调用会返回完整/整个页面,而不是只返回响应。页面方法上的断点显示它从未被命中。我有我的方法的[WebMethod]属性,它是public static,返回字符串,不接受任何参数。我甚至尝试添加[ScriptService]在我的类的顶部,看看它是否有帮助,但它没有。

我看到这个帖子Jquery AJAX with ASP.NET WebMethod Returning Entire Page有我的症状,但我仍然有一个问题。我读了http://encosia.com/2008/05/29/using-jquery-to-directly-call-aspnet-ajax-page-methods/,我觉得我跟着这个到T,但还是没有运气。

我在做的jQuery调用是:

jQuery.ajax({
    type: 'POST',contentType: 'application/json; charset=utf-8',data: '{}',dataType: 'json',url: 'MyPage.aspx/SomePageMethod',success: function(result){
        alert(result);
    }
});

根据FF3中的Firebug,请求/响应头如下

Response Headers
Server  ASP.NET Development Server/8.0.0.0
Date    Tue,24 Feb 2009 18:58:27 GMT
X-AspNet-Version    2.0.50727
Cache-Control   private
Content-Type    text/html; charset=utf-8
Content-Length  108558
Connection  Close

Request Headers 
Host    localhost:2624
User-Agent  Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.0.6) Gecko/2009011913 Firefox/3.0.6
Accept  application/json,text/javascript,*/*
Accept-Language en-us,en;q=0.5
Accept-Encoding gzip,deflate
Accept-Charset  ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive  300
Connection  keep-alive
Content-Type    application/json; charset=utf-8
X-Requested-With XMLHttpRequest
Referer http://localhost:2624/MyApp/MyPage.aspx
Content-Length  2
Cookie  ASP.NET_SessionId=g1idhx55b5awyi55fvorj055;

添加了一个ScriptManager到我的页面,只是为了踢,看看它是否有帮助,但没有运气。

有什么建议么?

解决方法

你知道页面方法是否正常工作?如果你使用ScriptManager,他们工作?

听起来你可能会缺少a web.config entry.具体的HttpModules部分。

原文链接:https://www.f2er.com/jquery/184422.html

猜你在找的jQuery相关文章