■ 텍스트 파일을 다운로드하는 방법을 보여준다.
▶ 예제 코드 (C#)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 |
using System.Web; using System.Web.UI; #region 텍스트 파일 다운로드하기 - DownloadTextFile(page, charSet, contentType, fullPath, source) /// <summary> /// 텍스트 파일 다운로드하기 /// </summary> /// <param name="page">페이지</param> /// <param name="charSet">문자셋</param> /// <param name="contentType">내용 종류</param> /// <param name="fullPath">완전한 경로</param> /// <param name="source">소스 문자열</param> public void DownloadTextFile(Page page, string charSet, string contentType, string fullPath, string source) { HttpResponse httpResponse = page.Response; httpResponse.ClearContent(); httpResponse.ClearHeaders(); httpResponse.Buffer = true; httpResponse.Charset = charSet; httpResponse.AddHeader("content-disposition", "attachment;filename=" + fullPath); httpResponse.ContentType = contentType; httpResponse.Write(source); httpResponse.Flush(); httpResponse.End(); } #endregion #region 텍스트 파일 다운로드하기 - DownloadTextFile(page, fullPath, source) /// <summary> /// 텍스트 파일 다운로드하기 /// </summary> /// <param name="page">페이지</param> /// <param name="fullPath">완전한 경로</param> /// <param name="source">소스 문자열</param> public void DownloadTextFile(Page page, string fullPath, string source) { DownloadTextFile(page, "KS_C_5601-1987", "application/unknown", fullPath, source); } #endregion |