35

我正在尝试通过 jQuery 从客户端调用服务器端方法。我的代码如下:

服务器端:

    using System.Web.Services;
    [WebMethod()]
    //[ScriptMethod()]
    public static void SendMessage(string subject, string message, string messageId, string pupilId)
    {
        //Send message
    }

客户端:

$("#btnSendMessage").live("click", function(){
  var subject = $("#tbSubject").val();
  var message = $("#tbMessage").val();
  var messageId = $("#hdnMessageId").val();
  var pupilId = $("#hdnPupilId").val();

  $.ajax({
      type: "POST",
      url: "./MessagePopup.aspx/SendMessage",
      data: ("subject=" + subject + "&message=" + message + "&messageId=" + messageId + "&pupilId=" + pupilId),
      error: function(XMLHttpRequest, textStatus, errorThrown){
          alert(textStatus);
      },
      success: function(result){
         alert("success");
      }
   });
   return false;
});

我在服务器端 SendMessage 方法上添加了一个断点,但它从来没有命中它,但是当我运行代码时,会调用 jQuery 成功方法。是什么原因造成的?

4

5 回答 5

38

要调用 ASP.NET AJAX“ScriptServices”和页面方法,您需要使用完整的 $.ajax() 语法:

$.ajax({
  type: "POST",
  url: "MessagePopup.aspx/SendMessage",
  data: "{subject:'" + subject + "',message:'" + message + ",messageId:'" + messageId + "',pupilId:'" + pupilId +"'}",
  contentType: "application/json; charset=utf-8",
  dataType: "json",
  success: function(msg) {
    // Do something interesting here.
  }
});

有关为什么需要这样做的详细信息,请参阅此帖子:http: //encosia.com/2008/05/29/using-jquery-to-directly-call-aspnet-ajax-page-methods/

编辑:扩展名不会更改为 .asmx,但仍然是 .aspx。

于 2009-05-20T10:16:43.910 回答
9

看起来您正在尝试使用页面方法。

在这里查看ASP.NET Ajax 中的页面方法以获取帮助

于 2009-05-20T10:11:50.677 回答
2

您应该使用 Web 服务而不是常规的 aspx 网页。网页不支持调用 web 方法,我相信您的 jQuery 请求会加载 HTML 页面。我建议你两件事:

  1. 使用 Fiddler2(带有 IE)或 HttpFox(带有 Firefox)在客户端调试 AJAX 请求和响应。
  2. 在服务器端使用 WCF Web 服务。在这种情况下,您可以使用SvcConfigEditorSvcTraceViewer在服务器端配置和调试 Web 方法。
于 2009-05-20T10:09:20.760 回答
2
$.ajax({  
        type: "POST",  
        url: "MessagePopup.aspx/SendMessage",  
        data: "{subject:'" + subject + "',message:'" + message + ",messageId:'" + messageId + "',pupilId:'" + pupilId +"'}",  
        async: true,  
        cache: false,  
        contentType: "application/json; charset=utf-8",  
        dataType: "json",  
        success: function() {},  
        error:function (xhr, ajaxOptions, thrownError){ alert(thrownError); }  
     });

如果这不起作用......并给出“语法错误:语法错误”......然后添加这个

<httpHandlers>
            <remove verb="*" path="*.asmx"/>
            <add verb="*" path="*.asmx" validate="false" type="System.Web.Script.Services.ScriptHandlerFactory,
System.Web.Extensions, Version=3.5.0.0, Culture=neutral,
PublicKeyToken=31BF3856AD364E35"/>
            <add verb="*" path="*_AppService.axd" validate="false" type="System.Web.Script.Services.ScriptHandlerFactory,
System.Web.Extensions, Version=3.5.0.0, Culture=neutral,
PublicKeyToken=31BF3856AD364E35"/>
            <add verb="GET,HEAD" path="ScriptResource.axd" type="System.Web.Handlers.ScriptResourceHandler,
System.Web.Extensions, Version=3.5.0.0, Culture=neutral,
PublicKeyToken=31BF3856AD364E35" validate="false"/>
        </httpHandlers>
        <httpModules>
            <add name="ScriptModule" type="System.Web.Handlers.ScriptModule, System.Web.Extensions,
Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
        </httpModules>

Web.Config 文件之间</compilation>和之间</system.web>

希望这会对某人有所帮助,因为我花了一段时间才弄清楚除了 jquery 函数之外,我必须在 Web.Config 中添加它。

于 2011-08-27T23:03:27.420 回答
1

这是可能适用于您的情况的代码。

<script type="text/javascript">
    $(document).ready(function () {

        // Add the page method call as an onclick handler for the button.
        $("#btnSubmit").click(function () {

            //get the string from the textbox
            $.ajax({

                type: "POST",
                url: "testSearch.aspx/GetMyShippingDate",
                contentType: "application/json; charset=utf-8",
                data: "{'tracking_num': '" + $("#txtTrackingNumber").val() + "'}",  
                dataType: "json",
                success: function (date) {

                    // Replace the div's content with the page method's return.
                    Success(date);

                },
                error: Failed
            });
        });
    });

     function Success(result) {  
          $("#ParcelShippingDate").html(result.d);
      }  
      function Failed(result) {  
          alert(result.status + " " + result.statusText);  
      }  

有一个例子一直对我有用。

这是完整的文章http://www.webdeveloperpost.com/Articles/How-to-use-jquery-ajax-in-asp-dot-net-web-page.aspx

它适用于那些想要直接使用 jquery asp.net 方法回调的人

于 2010-12-22T23:17:00.557 回答