我目前正在尝试在 asp.net2.0 中开发一个聊天应用程序,并要求我拨打电话。我的aspx Page Webmethod
问题是我无法拨打页面 webmethod。
在ff的错误控制台中没有显示任何消息,所以无法找出我哪里出错了。拨打网络服务时没有问题。
这是我写的代码
$(document).ready(function(){
$("#btnSend").click(function(){
$.ajax({
type:"POST",
data:"{}",
url:"Chat.aspx/GetTime",
contentType:"application/json; charset=utf-8",
dataType:"json",
success:function(msg){
alert(msg.d);
},
error:function(msg){
alert(msg.d);
}
});
});
});
这是我的chat.aspx页面。GetTime函数没有被调用?是 url 的问题吗?
[WebMethod]
public static string GetTime()
{
return DateTime.Now.ToString();
}