これは Web メソッドの定義です。
[HttpPost]
public FileResult GenerateReport(string Id) {
//............Code .................//
return File(response.ReportContents, "application/pdf");
}
そして、これがWebメソッドへのjQuery ajax呼び出しです。
$(".ValuationReport").bind('click', function () {
$.ajax({
url: "https://localhost.com/Report/GenerateReport
type: "POST",
data: { Id: "00AFCA2F-6809-4FF4-BA32-125EAEBB1321" },
success: function (data) {
},
error: function () {
alert("error");
}
});
});
私を助けてください。