Получение ошибки HTTP404: НЕ НАЙДЕН. Сервер не нашел ничего, соответствующего запрошенному URI (универсальному идентификатору ресурса). (XHR) POST - http://localhost: 57102 / Ab c .aspx / Подробности
Файл сценария:
<script src="https://code.jquery.com/jquery-latest.js"></script>
Веб-метод:
[WebMethod]
[ScriptMethod(ResponseFormat = ResponseFormat.Json)]
public static object Details()
{
return "Hello";
}
Ajax Звоните:
function GetDetails() {
$.ajax({
url: "Abc.aspx/Details",
type: 'POST',
contentType: 'application/json;charset=utf-8',
dataType: 'json',
cache: false,
success: function (_data) {
(JSON.stringify(_data));
_data = JSON.parse(_data.d);
alert(_data);
},
error: function (response) {
alert(response);
}
});
}