我找不到我失蹤,有沒有IIS設置需要改變,可能?500內部錯誤在jQuery Web方法調用 - IIS 5.1(: - /是啊,我知道...)
$(document).ready(function() {
function AjaxSuccess(result) {
alert('result: ' + result);
}
function AjaxError(result) {
alert("error");
alert(result.status + ' ' + result.statusText);
}
$(".hlp").click(function() {
var myVal= $(this).val();
var id = $(this).attr('id');
$.ajax({
type: "POST",
url: "AjaxWebMethods.aspx/GetHelpText",
contentType: "application/json; charset=utf-8",
data: "{'helpText' : '" + id + "'}",
dataType: "json",
success: AjaxSuccess,
error: AjaxError
});
});
});
我的網站的方法如下:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
public partial class AjaxWebMethods : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e){ }
#region Exposed WebMethods
[System.Web.Services.WebMethod()]
public string GetHelpText(string helpItem)
{
string helpText = "testing web method";
return helpText;
}
#endregion
}
我不斷收到2個彈出窗口 「錯誤」 ,然後501錯誤。 請幫我解決這個問題。
謝謝!更新,但仍然得到相同的東西:( – 2013-03-13 14:11:29
@MadamZuZu - 檢查更新.. – 2013-03-13 14:15:38