반응형
<html>
<%
Response.ContentType = "application/vnd.ms-excel"
Response.AddHeader "Content-Disposition", "attachment;filename="& filename
%>//ASP에서 엑셀로 변환하는 코드
<?
header(\"Content-type: application/vnd.ms-excel\");
header(\"Content-Disposition: attachment; filename=$filename\");
header(\"Expires: 0\");
header(\"Cache-Control: must-revalidate, post-check=0,pre-check=0\");
header(\"Pragma: public\");
?>//php에서 엑셀로 변환하는 코드
<head>
<style>
br{mso-data-placement:same-cell;} //BR을 ALT+ENTER효과로 대체
</style>
</head>
<body>
<table border=0 cellpadding=0 cellspacing=0 width=96>
<tr>
<td height=36>a<br>a</td>
</tr>
</table>
</body>
</html>
반응형
'9. 프로젝트 > └ 02. 홈페이지제작' 카테고리의 다른 글
제로보드팁! 분류에 따라 제목에 색깔 넣기 (0) | 2008.11.28 |
---|---|
(엑셀vba)안전한 바꾸기 - 바꾸기 실행시 에러날 경우 (0) | 2008.11.10 |
특정부분 인쇄 + scriptX(무료) 홈페이지 주소 숨기기 (1) | 2008.08.05 |
php 파일 다운로드 정리 (0) | 2008.07.26 |
iframe 높이를 자동으로 조절 (0) | 2008.07.26 |