$.ajax({
type: ‘POST‘,
url: ‘../ashx/ExportData.ashx?type=NonZhengshen‘,
//contentType: "application/json; charset=utf-8",
//dataType: ‘JSON‘,
data: {"detail":Detail},
success: function (data) {
},
error: function (err) {
alert(err.status);
}
})
ashx:
string Content = context.Request.Form["detail"];
时间: 2024-10-28 21:21:11