次のような ashx ハンドラーへの Json 呼び出しを行います。
attributes = $("#pageHtmlTag").attr("class").trim();
urlToHandler = 'JSonTestHandler.ashx';
jsonData = '{' + attributes + '}';
$.ajax({
url: urlToHandler,
data: jsonData,
dataType: 'json',
type: 'POST',
contentType: 'application/json',
success: function (data) {
setAutocompleteData(data.responseDateTime);
$("body").add("<div>" + data.toString() + " </div>").appendTo(document.body);
alert("grate suceees");
},
error: function (data, status, jqXHR) {
alert('There was an error.' + jqXHR);
}
}); // end $.ajax
受け取って処理します。また、表示する HTML を送り返したいのですが、HTML を Jscript に送り返す方法がわかりません。
灰:
string jsonData = new StreamReader(context.Request.InputStream, System.Text.Encoding.UTF8).ReadToEnd();
.............................
var testResultReportString = testResultReport.GetReportHtml();
var serializer = new JavaScriptSerializer();
var jSonTestResultReport = serializer.Serialize(testResultReportString);
context.Response.Write(jSonTestResultReport);
そこで質問です。Ajax 呼び出し成功関数にデータを返すにはどうすればよいですか?