Files
2026-02-23 10:01:00 +09:00

106 lines
4.5 KiB
Plaintext

<!-- #include virtual="/manager/common/file/other_top.asp" -->
<script type="text/javascript" src="/common/js/04poll.js"></script>
<!-- 권한 체크 -->
<!-- #include file="config.asp" -->
<%
R_Fields = "poc_idx, poc_topinclude, poc_tophtml, poc_btminclude, poc_btmhtml"
R_tablename_str = "poll_conf"
R_WHERE_str = " WHERE poc_idx=1"
Call SelectQuery (R_Fields, R_tablename_str, R_WHERE_str)
' ------------------- 저장공간인 [DATA]폴더가 없다면 생성 한다. -------------------
Set FSO = Server.CreateObject("Scripting.FileSystemObject")
datapath = Server.MapPath("\")&"\data\poll\"
If FSO.FolderExists(datapath) = False Then
FSO.CreateFolder(datapath)
End if
Set FSO = nothing
' ------------------------------------------------------------------------------------
%>
<!-- 내용영역 -->
<div id="contents">
<div id="contents_head">
<div id="contents_title">
<img src="/manager/img/tit_ic06.gif" width="22" height="21" class="<%=skin%> center" alt="" /><h1><span>설문조사 환경설정</span></h1>
</div>
<div id="location">
<a href="/manager/" tabindex="<%=getTabIndex()%>">Home</a> &gt; <a href="/manager/content/04popup/list.asp" tabindex="<%=getTabIndex()%>">부가기능</a> &gt; <a href="list.asp" tabindex="<%=getTabIndex()%>">설문조사관리</a> &gt; <a href="conf.asp" class="now" tabindex="<%=getTabIndex()%>">설문조사 환경설정</a>
</div>
</div>
<!-- 내용들어가는곳 -->
<div id="contents_area">
<form id="frm" method="post" action="conf_ok.asp" onsubmit="return confw_chk();">
<div>
<input type="hidden" name="poc_idx" value="<%=poc_idx%>" />
</div>
<h2 class="space"></h2>
<fieldset>
<legend>설문조사 환경설정 작성</legend>
<table cellspacing="0" class="bbs_<%=skin%>" summary="설문조사 환경설정을 위한 입력 양식입니다.">
<caption>설문조사 환경설정 </caption>
<colgroup>
<col width="140" />
<col width="580" />
</colgroup>
<tr>
<th scope="row"><label for="poc_topinclude">상단 파일</label></th>
<td class="left"><input type="text" size="90" id="poc_topinclude" name="poc_topinclude" title="상단에 삽입할 파일(경로포함) 입력" class="input_box_file" onfocus="focus_on1_<%=skin%>(this);" onblur="focus_off1(this);" value="<%=poc_topinclude%>" maxlength="100" tabindex="<%=getTabIndex()%>"/><br /><span class="text1">* 시작경로는 루트(/)로 설정된 경로부터 시작됩니다.</span></td>
</tr>
<tr>
<th scope="row"><label for="poc_tophtml">상단 HTML 정보</label></th>
<td class="left"><textarea cols="75" rows="10" style="height:150px;" id="poc_tophtml" name="poc_tophtml" title="상단 HTML 입력" onfocus="focus_on1_<%=skin%>(this);" onblur="focus_off1(this);" tabindex="<%=getTabIndex()%>"><%=poc_tophtml%></textarea><br /><span class="text1">* HTML태그사용은 가능하나, &lt; script &gt; 는 사용불가합니다.</span></td>
</tr>
<tr>
<th scope="row"><label for="poc_btminclude">하단 파일</label></th>
<td class="left"><input type="text" size="90" id="poc_btminclude" name="poc_btminclude" title="하단에 삽입할 파일(경로포함) 입력" class="input_box_file" onfocus="focus_on1_<%=skin%>(this);" onblur="focus_off1(this);" value="<%=poc_btminclude%>" maxlength="100" tabindex="<%=getTabIndex()%>"/><br /><span class="text1">* 시작경로는 루트(/)로 설정된 경로부터 시작됩니다.</span></td>
</tr>
<tr>
<th scope="row"><label for="poc_btmhtml">하단 HTML 정보</label></th>
<td class="left"><textarea cols="75" rows="10" style="height:150px;" id="poc_btmhtml" name="poc_btmhtml" title="하단 HTML 입력" onfocus="focus_on1_<%=skin%>(this);" onblur="focus_off1(this);" tabindex="<%=getTabIndex()%>"><%=poc_btmhtml%></textarea><br /><span class="text1">* HTML태그사용은 가능하나, &lt; script &gt; 는 사용불가합니다.</span></td>
</tr>
</table>
</fieldset>
<div class="contoll_box">
<div id="<%=skin%>_bt"><span class="button"><input type="submit" value="등록" tabindex="<%=getTabIndex()%>" /></span> <span class="button"><input type="button" value="취소" onclick="page_go1('<%=reset_url%>');" tabindex="<%=getTabIndex()%>" /></span></div>
</div>
</form>
</div>
<!-- 내용들어가는곳 -->
</div>
<!-- ' 내용영역 -->
<!--#include virtual="/manager/common/file/sub_bottom.asp"-->