我使用一個jQuery函數這有點像這樣調用頁面方法:頁方法不工作
function GetNewDate(thedateitem) {
ThisMonth = 3;
TheDay = 1;
TheYear = 2011;
DateString = TheMonth + '/' + TheDay + '/' + TheYear;
$.ajax({
type: "POST",
url: "/Pages/CallHistory.aspx/ResetDate",
contentType: "application/json; charset=utf-8",
data: DateString,
dataType: "json",
success: successFn,
error: errorFn
})
};
,然後在後面的文件中的代碼,我有:
[WebMethod]
public static void ResetDate(DateTime TheNewDate)
{
var test = 4;
}
然而,當我在var test = 4上放置一個斷點時,它永遠不會停在那裏。
我錯過了什麼?
謝謝。
我總是用數據類型:「文本「當調用Web方法時,只是指出這一點,並不確定這是否會導致它。 – Loktar 2011-02-09 21:26:28
如何編寫路徑使其工作?路徑是正確的。 – frenchie 2011-02-09 21:27:08