File name
Commit message
Commit date
File name
Commit message
Commit date
File name
Commit message
Commit date
File name
Commit message
Commit date
File name
Commit message
Commit date
File name
Commit message
Commit date
File name
Commit message
Commit date
File name
Commit message
Commit date
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
<%@ taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions"%>
<%@ taglib prefix="form" uri="http://www.springframework.org/tags/form" %>
<%@ taglib prefix="ec" uri="/WEB-INF/tld/ecnet_tld.tld"%>
<!DOCTYPE html>
<html lang="ko">
<head>
<script src="/js/dragNdropToImgs.js"></script>
<script type="text/javascript">
// 첨부파일 등록 종료 ----------------------
function fileDown(){
var listForm = document.bizForm ;
listForm.startCount.value = $("#start option:selected").val();
listForm.method = "get";
listForm.action = "<c:url value='/uss/ion/msg/selectDownFile.do'/>";
listForm.submit();
}
</script>
</head>
<body>
<form id="bizForm" name="bizForm" method="post">
<input type="hidden" id="startCount" name="startCount" value="">
</form>
<!--// tab button -->
<div class="contWrap">
<div class="pageTitle">
<div class="pageIcon"><img src="/pb/img/pageTitIcon4.png" alt=""></div>
<h2 class="titType1 c_222222 fwBold">첨부파일 다운로드</h2>
<p class="tType6 c_999999">첨부파일 다운로드</p>
</div>
<div class="pageCont">
<table class="tbType2">
<colgroup>
<col style="width: 190px;">
<col style="width: auto;">
</colgroup>
<tbody>
<tr class="autoY">
<th scope="row">
수량
</th>
<td>
<c:out value="${totCut}"/>
</td>
</tr>
<tr class="autoY">
<th scope="row">
시작
</th>
<td>
<select name="start" id="start">
<option value="0">0</option>
<option value="1000">1000</option>
<option value="2000">2000</option>
<option value="3000">3000</option>
<option value="4000">4000</option>
<option value="5000">5000</option>
<option value="6000">6000</option>
</select>
</td>
</tr>
</tbody>
</table>
<div style="text-align: center;">
<button type="button" class="btnType btnType16" onclick="javascript:fileDown();">다운</button>
</div>
</div>
</div>
</body>
</html>