我的jQuery AJAX是::顯示Ajax響應文件到視圖
$.ajax({
type:'POST',
url:'GetFile',
date:data,
success:function(response){
//How to use the responded file?
}
})
,並在服務器端,我返回文件爲::
public ActionResult GetFile()
{
ReportDocument rd = new ReportDocument();
Stream stream = rd.ExportToStream(CrystalDecisions.Shared.ExportFormatType.PortableDocFormat);
stream.Seek(0, SeekOrigin.Begin);
return new FileStreamResult(stream, "application/pdf");
}
在這裏,我返回從服務器上的文件我想展示在我的視圖中的一面。
的意思是說,我只是想在迴應文件追加到
<div id="FileContent"></div>
這是爲我的觀點。
我能爲此做些什麼?
它不工作 – Rahul