这是我第一次尝试使用jQuery.ajax()来调用WebMethod。我搜索和搜索了stackoverflow,以及谷歌我不知道多少次,此时我觉得我只是尝试随机修复我发现,希望有所作为。我当然不再学习了,所以我觉得是时候问了。
我的错误:未知的网络方法日期。参数名称:methodName。
我的班级和WebMethod:
[ScriptService]
public partial class _Maps : Page
{
protected void Page_PreLoad(object sender, EventArgs e)
{
}
protected void Page_Load(object sender, EventArgs e)
{
}
[WebMethod]
public static string Date()
{
return DateTime.Now.ToString();
}
}
我的页面:
<html>
<head>
<title>jQuery</title>
<script type ="text/javascript" src ="Scripts/jquery-1.8.2.min.js"></script>
<script type ="text/javascript" src ="Scripts/cSharp.js"></script>
</head>
<body>
<div id="clickArea" style="height: 1000px"></div>
</body>
</html>
和我的Javascript:
$(document).ready(function ()
{
$("#clickArea").click(function ()
{
alert("Clicked");
$.ajax(
{
type: "POST",
url: 'Maps.aspx/Date',
contentType: "application/json; charset=utf-8",
dataType: "json",
success: function (msg)
{
alert(msg);
$("#clickArea").text(msg.d);
},
error: function(xhr, msg, msg2)
{
alert(msg2);
alert(xhr.responseText);
}
});
});
});
我知道这个问题已被多次询问过,但我对我正在使用的技术的经验有限,而且我知道我必须遗漏一些愚蠢的东西。我几乎整天都在这里,我觉得我现在只是在圈子里跑。如果需要,我可以发布更多信息。
感谢。
答案 0 :(得分:0)
终于解决了!
我需要做的就是在页面声明中设置我的.ASPX页面的Inherits属性。它无法找到该方法,因为后面的代码不是我的WebMethod的实际页面。傻,就像我想的那样。