Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 신혼여행
- 에쿠스 콘솔박스
- 커피
- Photo
- AS
- 사진강좌
- SQL
- 사진용어
- 자바스크립트
- ODBC
- ASP.NET
- glossary
- minipresso
- Lotus Notes
- 뉴칼레도니아
- linkhard
- 링크하드
- 로터스 노츠
- Attribute
- 노출
- Nas
- generic
- Lotus Script
- C#
- domino
- 사진
- DICTIONARY
- 자작 콘솔
- JavaScript
- 용어정리
Archives
- Today
- Total
바라기의 이야기
서버에 존재하는 파일을 로컬로 내려주는 코드 샘플 본문
string destFile = strTempDir + strFileName + ".docx";
FileStream sm1 = File.OpenRead(destFile);
Response.ClearHeaders();
Response.ClearContent();
Response.Clear();
Response.ContentType = "application/vnd.openxmlformats-officedocument.wordprocessingml.document";
Response.AddHeader("Content-disposition", "attachment;filename=" + "OKOK.docx;");
Response.AddHeader("Content-Length", sm1.Length.ToString());
Response.WriteFile(destFile);
Response.Flush();
Response.Close();
sm1.Close();
try
{
if (File.Exists(destFile))
{
File.Delete(destFile);
}
}
catch (Exception ex)
{
}
'Develop > .NET' 카테고리의 다른 글
C# CheckListBox에 동적 값 설정 및 선택된 아이템 Value 값 가져오기 (0) | 2014.05.19 |
---|---|
WinForm의 ListBox에서 툴팁표시 (0) | 2012.02.28 |
.NET CS 페이지에서 웹브라우저 오픈 (0) | 2012.02.24 |
Json 데이터를 NameValueCollection으로 변환하기... (0) | 2011.12.20 |
[실전! 강의실, 웹 서비스 1] 현실로 다가온 웹 서비스, MS와 자바 플랫폼의 연동 (0) | 2010.10.08 |