엑셀 다운로드
본문 바로가기
IT. 컴퓨터

엑셀 다운로드

by 솔기잇 2014. 1. 14.



*jsp


1)

-- list.jsp

:

<button type="button" class="btn2" onclick="goExcel();">엑셀다운로드</button>
      :

2)

function goExcel() {

f = document.searchForm;

f.action = "/board/excel.jsp";

f.submit();

}


3)

-- excel.jsp

<%

response.setHeader("Content-Disposition", "attachment; filename=myexcel.xls");

response.setHeader("Content-Description", "JSP Generated Data");

%>   

  :

<body>

<div id="title">

<dl>

<dt class="num">번호</dt>

<dt class="subject">제목</dt>

<dt class="name">작성자</dt>

<dt class="created">작성일</dt>

<dt class="hitCount">조회수</dt>

</dl>

</div>

</body>

  

'IT. 컴퓨터' 카테고리의 다른 글

다리에 깁스하고 있거든  (0) 2014.01.14
text 박스에 값 넣기  (0) 2014.01.14
달력, 스케줄  (0) 2013.12.23
Can I borrow uour flip-flops?  (0) 2013.12.23
그건 단지 제안일 뿐이에요...  (0) 2013.12.22

close