파일다운로드
Windows/ASP.NET : 2007/11/22 12:59
Response.Clear();
Response.ContentType = "Application/UnKnown";
Response.AddHeader("Content-Disposition", "attachment;filename=" + Path.GetFileName(Server.MapPath(Request.QueryString["filePath"])));
Response.WriteFile(Server.MapPath(Request.QueryString["filePath"]));
Response.End();
Response.ContentType = "Application/UnKnown";
Response.AddHeader("Content-Disposition", "attachment;filename=" + Path.GetFileName(Server.MapPath(Request.QueryString["filePath"])));
Response.WriteFile(Server.MapPath(Request.QueryString["filePath"]));
Response.End();
Trackback Address :: http://jjangu.pe.kr/blog/trackback/480



