以下に示すように、ページにjquery ajaxを呼び出しています
<script type="text/javascript">
function Showgrid() {
$.ajax({
type: "GET",
url: "popup.aspx",
contentType: "application/json; charset=utf-8",
data: {locale: 'en-US' },
dataType: "json",
success: function (data) {
$("#target").html(data.d);
},
error: function (jqXHR, textStatus, errorThrown) {
alert(jqXHR.responseText);
}
});
}
</script>
そして popup.aspx ページの読み込み時に、次のようにコードを記述しました
protected void Page_Load(object sender, EventArgs e)
{
Response.ContentType = "text/plain";
Response.Write(Request.QueryString[0]);
Response.Write(DateTime.Now.ToString());
Response.End();
}
私は応答を得ていますが、エラー関数ではなく成功メソッドではなく、何が間違っているのかを提案してください