天天看点

ashx 下载文件

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;