DJ메탈짱™의 Free Style

[ASP.NET] 서버 위치한 pdf파일 저장, download 본문

일(job)/MS(Microsoft)

[ASP.NET] 서버 위치한 pdf파일 저장, download

뽀&쏭 2015. 12. 8. 12:41


// 사용자매뉴얼 설정

$("#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);

%>