別のページのサーバー側に Ajax でフォームを送信して保存し、同じページに留まろうとしています。
Ajax コード:
function SaveJS() {
$.ajax({
type: "POST",
url: 'http://' + $('#ip').val() + 'EditSochen.aspx?id=3',
data: $('#form1').serialize(),
success: function () {
$('#div2').css("display", "none")
}
});
}
'http://' + $('#ip').val() + 'EditSochen.aspx?id=3' ページのサーバー コード:
if (Page.IsPostBack)
{
Response.Clear(); //clears the existing HTML
Response.ContentType = "text/plain"; //change content type
Response.Write("fgf"); //writes out the new name
Response.End(); //end
}
別のページのサーバー側に到着しますが、同じページにとどまるのではなく、別のページを返します。なぜですか?
ありがとう、