Я пытаюсь контролировать ответ json, который отправляю обратно клиенту, но не знаю точно, как ..
Вот простая демонстрация:
код JS
xhr = new XMLHttpRequest();
xhr.open("POST", "page.aspx", true);
xhr.send();
// handle the response with xhr.responseText
.cs код
bool success = false;
string message = String.Empty;
// Create JSON Response
var jsonData = new
{
success = success,
message = message
};
Response.Write(jsonData);
Проблема в том, что когда я смотрю на xhr.responseText, я вижу:
"{ success = False, message = }
<!DOCTYPE html PUBLIC ....
....
..
"