일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 프로시저
- windows
- c#
- aspnet
- SSRS
- ASP
- 마이크로소프트
- Excel
- 리포팅서비스
- microsoft
- 윈폼
- attr()
- Winform
- 이클립스
- oracle
- 오라클
- CONVERT()
- 엑셀
- DataGrid
- 비주얼스튜디오
- 단축키
- 자바스크립트
- jQuery
- replace()
- 윈도우
- 태그를 입력해 주세요.
- MSSQL
- IIS
- javascript
- MS
- Today
- Total
DJ메탈짱™의 Free Style
[ASP.NET] 서버 위치한 pdf파일 저장, download 본문
// 사용자매뉴얼 설정
$("#logon_manual").click(function(){
$(location).attr("href",http://서버IP/downloadfile.aspx?fname=SJCRM_Manual.pdf);
});
--------------------------------------------------------------------
downloadfile.aspx
--------------------------------------------------------------------
<%@ Import namespace = "System.IO"%>
<%@ Page language="c#" %>
<%
string filename = Request["fname"] ;
string fpname = Request["fpname"] ;
string ftype = Request["ftype"] ;
string lFileName = "" ;
if (fpname == string.Empty ||
fpname == null ||
fpname == "")
lFileName = Path.GetFileName(filename) ;
else
lFileName = fpname + "." + ftype ;
Response.AddHeader("Content-Disposition","attachment;filename=" +HttpUtility.UrlEncode(lFileName).Replace("+","%20"));
Response.ContentType = "multipart/form-data";
Response.WriteFile(filename);
%>
'일(job) > MS(Microsoft)' 카테고리의 다른 글
datagrid to excel,csv export 할때 오류나는 경우...확인사항 (0) | 2015.12.11 |
---|---|
[ASP.NET] 관리되는 통합 파이프라인 모드에 적용되지 않는 ASP.NET 설정이 있습니다. (0) | 2015.12.11 |
[ASP.NET] ReportViewer 사용시 오류발생, web.config (0) | 2015.12.08 |
[ASP.NET] HTTP 오류 500.21 - Internal Server Error (0) | 2015.12.08 |
[C#] HTML 태그 제거하기 (0) | 2015.12.08 |