개발/프로그래밍

C#(ASP.NET) 엑셀저장시 한글 깨짐 방지

일퍼센트 2009. 10. 13. 23:30
728x90
    Response.ContentType = "application/vnd.ms-excel"; 


    Response.Charset = "euc-kr"; 


    Response.ContentEncoding = System.Text.Encoding.GetEncoding("euc-kr"); 


728x90