Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->try
{
string FullFileName = Server.MapPath(@"/images/imgname.jpg"); //FileName--要下载的文件名
System.IO.FileInfo DownloadFile = new System.IO.FileInfo(FullFileName);
if (DownloadFile.Exists)
{
Response.Clear();
Response.ClearHeaders();
Response.Buffer = false;
Response.ContentType = "application/octet-stream";
Response.AppendHeader("Content-Disposition", "attachment;filename=" + HttpUtility.UrlEncode(DownloadFile.Name, System.Text.Encoding.ASCII));
Response.AppendHeader("Content-Length", DownloadFile.Length.ToString());
Response.WriteFile(DownloadFile.FullName);
Response.Flush();
Response.End();
}
else
{
//文件不存在
}
}
catch
{
//文件不存在
}
提问和评论都可以,用心的回复会被更多人看到
评论
发布评论
相关文章
-
代码高亮插件 c#(asp.net)
下载
代码高亮插件 c# asp.net c# 高亮 -
Asp.net(c#)实现多线程断点下载
System.IO.Stream iStream = null; // Buffer to read 10K bytes in chunk: &nb
c# asp.net sqlserver 多线程 buffer null -
C# ASP.NET FILEUPLOAD详解
显示一个文本框控件和一个浏览按钮,使用户可以选择要上载到服务器的文件。 命名空间: System.Web.UI.WebControls 程序集
C# asp.net fileupload html 上传文件 -
perf 分析spring boot
之前项目一直使用的是1.4版本的,最近新开发一个项目,准备使用最新版本。去 spring 官网查询目前最新稳定(标有红色 GA)版本为2.1.3。OK!开始填坑之路一:pom 文件中引入官方迁移插件<dependency> <groupId>org.springframework.boot</groupId> <
perf 分析spring boot springboot2.x填坑 springboot迁移 springboot升级 springboot1升级