'ASP엑셀'에 해당되는 글 1건

  1. 2009.06.18 [ASP] 웹페이지 내용을 Excel파일로 저장하기






ASP페이지 상단에 다음과같이 컨텐츠타입과 파일명을 설정해줍니다.

<%

 

Response.ContentType = "application/vnd.ms-excel"

Response.AddHeader "Content-Disposition" , "attachment; filename=파일명.xls"

...

 

%>

Posted by 탁이98
,