ashx背景
byte[] file =GetFileByte("");
Response.ContentType = "application/octet-stream";
Response.AppendHeader("Content-Disposition", "attachment;Filename=123.pdf");
Response.BinaryWrite(file);
Response.Flush();
Response.End();
js:
var newUrl = "1111.ashx?Action=LoadByID&ID=" + id;
location.href = newUrl;