2
我想實現這個簡單的例子http://www.aspsnippets.com/Articles/Call-ASPNet-Page-Method-using-jQuery-AJAX-Example.aspxASP.NET可視化Web部件+ AJAX,不能讓它工作
但它不工作,它給
Failed to load http://site/path/path/pagename.aspx/GetCurrentTime resource: the server responded with a status of 500 (Internal Server Error)
客戶端
<script src="http://.../jquery-1.7.2.min.js" type="text/javascript"></script>
<script type = "text/javascript">
function ShowCurrentTime() {
$.ajax({
type: "POST",
url: "pagename.aspx/GetCurrentTime",
data: '{name: "' + $("#<%=txtUserName.ClientID%>")[0].value + '" }',
contentType: "application/json; charset=utf-8",
dataType: "json",
success: OnSuccess,
failure: function (response) {
alert(response.d);
}
});
}
function OnSuccess(response) {
alert(response.d);
}
</script>
<asp:TextBox ID="txtUserName" runat="server"></asp:TextBox>
<input id="btnGetTime" type="button" value="Show Current Time"
onclick = "ShowCurrentTime()" />
服務器(cs文件)
[System.Web.Services.WebMethod]
public static string GetCurrentTime(string name)
{
return "Hello " + name + Environment.NewLine + "The Current Time is: "
+ DateTime.Now.ToString();
}
是的,現在錯誤只是返回'undefined'。但我仍然不明白問題在哪裏。我正在調試,並沒有調用服務器方法。 – HoTTab1CH
@ HoTTab1CH我想你有問題的數據。寫簡單的字符串,而不是你的jQuery代碼。 – mybirthname
我做了同樣的錯誤。也許應該在服務器端添加其他內容? – HoTTab1CH