HTTP文件下载

来源:互联网 发布:曼德拉效应知乎 编辑:程序博客网 时间:2024/06/17 15:58
                FileInfo fi = new FileInfo(FilePath);                HttpResponse contextResponse = System.Web.HttpContext.Current.Response;                contextResponse.Clear();                contextResponse.AddHeader("Content-Disposition", "attachment; filename=" + HttpUtility.UrlEncode("FileName", System.Text.Encoding.UTF8));                contextResponse.AddHeader("Content-Length",fi.Length.ToString());                contextResponse.ContentType = "application/octet-stream";                contextResponse.Filter.Close();                contextResponse.WriteFile(fi.FullName);                contextResponse.End();                contextResponse.Flush();

0 0
原创粉丝点击