私のコードはこのようなものです
public static void Deleter()
{
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");
if (FileExists("/media/pdf/" + "name" + ".pdf"))
{
System.IO.File.Delete("D:/Projects/09-05-2013/httpdocs/media/pdf" + "name" + ".pdf");
}
HttpContext.Current.Response.End();
}
このコード全体を実行した後でも、フォルダーに name.pdf が表示されます。エラーはスローされません。何が問題なのか教えてもらえますか?