天天看點

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;