私は、ボディの .net1.1 onload でこの JavaScript メソッド「test」を呼び出しています。Web メソッドは文字列データを返しますが、Jquery メソッドでそのデータを取得できません。HiddenPage.aspx で ==============================
機能テスト() {
debugger;
$.ajax({
type: "POST",
url: "HiddenPage.aspx/GetServerTime",
//async : false,
//data: "i=1",
contentType: "application/json",
//dataType: "text",
success: function(msg)
// error: function(, textStatus, errorThrown) {
{
debugger;
alert(msg.d);
},
error: function(msg)
//complete: function (jqXHR, textStatus) {
{
debugger;
alert(msg.d);
alert("Error! Try again...");
//return false;
}
})
// return '';
}
HiddenPage.aspx.cs に webmthod.My WebMethod を入れました:-
[WebMethod()]
public static string GetServerTime()
{
return DateTime.Now.ToString();
}