我的代码是这样的
HttpContext.Current.Response.Clear();
HttpContext.Current.Response.ContentType = "application/pdf";
HttpContext.Current.Response.AppendHeader("Content-Disposition", "attachment; filename=" + "name" + ".pdf");
HttpContext.Current.Response.TransmitFile("~/media/pdf/name.pdf");
HttpContext.Current.Response.End();
if (FileExists("/media/pdf/name.pdf"))
{
System.IO.File.Delete("D:/Projects/09-05-2013/httpdocs/media/pdf/name.pdf");
}
在这里我想在浏览器中下载name.pdf,下载后我想删除那个文件。但是代码执行停止在
HttpContext.Current.Response.End();
该行执行后没有代码。所以我的删除功能不起作用。这个问题有什么解决方法吗?