한글파일명으로된 파일 다운로드 받기
view.aspx.cs 해당 링크 " + file + " fileDown.aspx.cs string fileName = System.Web.HttpUtility.UrlDecode(Request.QueryString["fileName"]); string defaultPath = Request.QueryString["defaultPath"]; //파일 다운로드시 경로는 서버의 로컬경로와 fileName이 같이 들어간 전체경로를 넘겨야 한다. string fullPath = Server.MapPath(ConfigurationManager.AppSettings["FilePath"]) + defaultPath + @"\" + fileName; Response.Write(fileName); Response.Clea..
청강컴정/.NET
2009. 3. 3. 03:42