gpt4 book ai didi

c# - 在 ASP .NET c# 中使用 JQuery 进行 Ajax

转载 作者:行者123 更新时间:2023-12-01 02:53:13 26 4
gpt4 key购买 nike

我正在尝试在 asp .net c# 中使用 JQuery ajax。我正在使用的代码是...

HTML 格式:

<div>
Your Name :
<asp:TextBox ID="txtUserName" runat="server"></asp:TextBox>
<input id="btnGetTime" type="button" value="Show Current Time"
onclick = "ShowCurrentTime()" />
</div>

JQuery 部分:

<script type="text/javascript">
function ShowCurrentTime() {
//alert(window.location.pathname);
$.ajax({
type: "POST",
url: "Display.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>

CS 部分:

    using System.Web.Services;

This part below is under partial class which inherits from Page class.

[WebMethod]

public static string GetCurrentTime(string name)
{

return "Hello "+ name +"! " + Environment.NewLine + "The Current Time is: "
+ DateTime.Now.ToString();
}

问题: 它不起作用。如果我缺少任何设置或任何 namespace ,请告诉我。或者任何东西。我在 ajax 调用中放入的 URL 是正确的,因为我通过以下方式验证了它var 路径名 = window.location.pathname;我在调用 ajax 时也提供了数据。

最佳答案

也许会改变

 failure: function (response) {
alert(response.d);
}

 error: function (response) {
alert(response.d);
}

将有助于查找问题。我在文档中没有看到失败回调 - http://api.jquery.com/jquery.ajax/

关于c# - 在 ASP .NET c# 中使用 JQuery 进行 Ajax,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34998395/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com