최초등록
This commit is contained in:
@@ -0,0 +1,641 @@
|
||||
<!--#include virtual="/common/file/inc_head.asp"-->
|
||||
<link rel="stylesheet" type="text/css" href="/common/helloCalendar/helloCalendar.css" />
|
||||
<script type="text/javascript" src="/common/helloCalendar/helloCalendar.js"></script>
|
||||
<%
|
||||
Set ST = New SelectTable
|
||||
|
||||
|
||||
'response.write mysilguk()
|
||||
'response.write session("ss_m_sms") & "," & Request.Cookies("M_JobLevel")
|
||||
'발송건에 대한 고유번호
|
||||
randomize
|
||||
jw1 = Int((100 * Rnd) + 1)
|
||||
jw2 = replace(right(now(),8),":","")
|
||||
a_num = trim(jw1) + trim(jw2)
|
||||
|
||||
'--------------------실국 리스트-------------------------
|
||||
sql = "select bdm_idx, bdm_menuname from bd_menu_page where bdm_ref = 0 and bdm_chk = 'Y' order by bdm_code"
|
||||
Set buseo_rs = DbCon.Execute(sql)
|
||||
If buseo_rs.bof Or buseo_rs.eof Then
|
||||
buseo_data1 = Null
|
||||
Else
|
||||
buseo_data1 = buseo_rs.getrows
|
||||
End If
|
||||
Set buseo_rs = Nothing
|
||||
'-------------------실국 리스트 끝-----------------------
|
||||
|
||||
'---------------개인주소록 그룹 리스트-------------------------
|
||||
sql = "select bdm_idx, bdm_menuname, (select count(*) from bd_address_page where bdm_idx = a.bdm_idx) as cnt from bd_address as a where bdm_id = '"&session("ss_m_id")&"' and bdm_ref = 0 order by bdm_code"
|
||||
Set juso_rs = DbCon.Execute(sql)
|
||||
If juso_rs.bof Or juso_rs.eof Then
|
||||
juso_data1 = Null
|
||||
Else
|
||||
juso_data1 = juso_rs.getrows
|
||||
End If
|
||||
Set juso_rs = Nothing
|
||||
'-------------------개인주소록 리스트 끝-----------------------
|
||||
|
||||
|
||||
re_phone = request.form("number")
|
||||
re_message = request.form("message")
|
||||
If re_message = "" Then re_message = "메세지를 입력하세요!"
|
||||
%>
|
||||
|
||||
<script type="text/javascript" src="/common/js/total.js"></script>
|
||||
<script type="text/javascript">
|
||||
//<![CDATA[
|
||||
var M_sms;
|
||||
M_sms = '1'; //sms등급 전역변수 생성
|
||||
|
||||
|
||||
$(function(){
|
||||
$("#message").keyup(function(){
|
||||
var limit = eval( $(this).data("limit") );
|
||||
updateChar( limit );
|
||||
}).focus(function(){
|
||||
var limit = eval( $(this).data("limit") );
|
||||
setCleanMsg();
|
||||
updateChar(limit);
|
||||
});
|
||||
|
||||
$("#rdate, #time1, #time2").change(function(){
|
||||
$("#resOrNot").attr("checked", true);
|
||||
});
|
||||
$("#calendarimg").click(function(){
|
||||
$("#resOrNot").attr("checked", true);
|
||||
});
|
||||
|
||||
var length = calculate_msglen( $("#message").val() );
|
||||
if( length > 80 ){
|
||||
changeLimit( 2000 );
|
||||
updateChar( 2000 );
|
||||
}
|
||||
|
||||
});
|
||||
|
||||
onload = function(){
|
||||
var re_phone = "<%=re_phone%>";
|
||||
if (re_phone != ""){
|
||||
add("M"+";개인추가;"+re_phone, "M"+";noname;"+re_phone);
|
||||
}
|
||||
}
|
||||
//발송-----------
|
||||
|
||||
function smsSend(){
|
||||
<%if session("ss_m_id") = "" then%>
|
||||
var frm;
|
||||
frm = document.login_frm;
|
||||
alert("로그인후 사용할 수 있습니다.");
|
||||
frm.m_id.focus();
|
||||
}
|
||||
<%else%>
|
||||
var eForm = document.getElementById("frmMsg");
|
||||
if((eForm.message.value == '메세지를 입력하세요!')||(eForm.message.value == '')){
|
||||
alert("메세지를 입력하세요!");
|
||||
eForm.message.focus();
|
||||
return;
|
||||
}
|
||||
if(eForm.callback.value.split(" ").join("") == ""){
|
||||
alert("송신자 번호를 입력하세요.");
|
||||
eForm.callback.focus();
|
||||
return;
|
||||
}
|
||||
if((list_rec.length - 1) > parseInt(eForm.smsQty.value)){
|
||||
alert("당월 남은 건수가 부족합니다.");
|
||||
return;
|
||||
}
|
||||
if(list_rec.length == 1){
|
||||
alert("받는사람을 선택하세요.");
|
||||
return;
|
||||
}
|
||||
eForm.list_rec.value = ""; //초기화 안시키면 계속누적!
|
||||
for (var i = 0; i < list_rec.options.length; i++) {
|
||||
eForm.list_rec.value = eForm.list_rec.value + list_rec.options[i].value+",";
|
||||
}
|
||||
//eForm.list_rec.value = list_rec.value;
|
||||
|
||||
if(eForm.mms_chk.value == "Y"){
|
||||
eForm.action = "./send_mms.asp";
|
||||
}
|
||||
eForm.submit();
|
||||
}
|
||||
<%end if%>
|
||||
|
||||
|
||||
function callBackChange(){
|
||||
if(confirm("회신번호를 변경하시려면 개인정보 수정메뉴에서\n모바일번호를 인증받아야 합니다.\n\n변경하시겠습니까?")){
|
||||
location.href="/content/06mypage/index03.asp";
|
||||
}else{
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
function setBuseo(bdm_idx, value){
|
||||
var url = "./get_addr.asp?bdm_idx="+bdm_idx+"&value="+value;
|
||||
$("#td_address2").load(url);
|
||||
}
|
||||
//]]>
|
||||
</script>
|
||||
<script type="text/javascript" src="/common/calendar/total.js"></script>
|
||||
|
||||
|
||||
<!-- 타이틀 -->
|
||||
<div id="cont_head">
|
||||
<h2>문자전송</h2>
|
||||
<p class="imp">받는사람을 선택 후 메시지를 입력하시고 ‘보내기’ 버튼을 클릭하시면 전송됩니다. <span>단문전송은 최대 80 Byte까지 전송 가능</span>합니다.</p>
|
||||
</div>
|
||||
<!-- //타이틀 -->
|
||||
<!-- 내용 -->
|
||||
<div id="cont_wrap">
|
||||
<div class="s0101">
|
||||
<!-- 문자전송 -->
|
||||
<div class="sms_section">
|
||||
<div class="send_area">
|
||||
<div class="phone">
|
||||
<textarea rows="10" placeholder="내용을 입력하세요."></textarea>
|
||||
<div class="byte"><strong>0</strong> / 80 byte</div>
|
||||
<dl class="callnum">
|
||||
<dt>발신번호</dt>
|
||||
<dd><input type="text" value="010-1234-5678" style="width:100%;" disabled="disabled" /></dd>
|
||||
<dt>수신번호</dt>
|
||||
<dd><input type="tel" style="width:72%" /> <a href="#" class="btn_add"><img src="/img/sub/btn_add_num.gif" alt="추가" /></a></dd>
|
||||
</dl>
|
||||
<ul class="addr">
|
||||
<li><a href="javascript:;" onclick="clickArea(detaillayer4,0);">최근번호</a></li>
|
||||
<li><a href="javascript:;" onclick="clickArea(detaillayer7,0);">최근메시지</a></li>
|
||||
</ul>
|
||||
<ul class="chk">
|
||||
<li><input type="checkbox" href="javascript:;" onclick="clickArea(detaillayer6,0);" />예약발송</li>
|
||||
</ul>
|
||||
<div class="btngroup">
|
||||
<ul class="btn_nrm column2">
|
||||
<li><a href="#" class="nrm3">보내기</a></li>
|
||||
<li><a href="#" class="nrm3">다시 쓰기</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
<div class="numlist">
|
||||
<div class="inner">
|
||||
<ul class="add_num">
|
||||
<li><input type="checkbox" /> <strong>1.</strong> 010-1234-6478 <a href="#"><img src="/img/sub/btn_delete.gif" alt="삭제" /></a></li>
|
||||
<li><input type="checkbox" /> <strong>2.</strong></li>
|
||||
<li><input type="checkbox" /> <strong>3.</strong></li>
|
||||
<li><input type="checkbox" /> <strong>4.</strong></li>
|
||||
<li><input type="checkbox" /> <strong>5.</strong></li>
|
||||
<li><input type="checkbox" /> <strong>6.</strong></li>
|
||||
<li><input type="checkbox" /> <strong>7.</strong></li>
|
||||
<li><input type="checkbox" /> <strong>8.</strong></li>
|
||||
<li><input type="checkbox" /> <strong>9.</strong></li>
|
||||
<li><input type="checkbox" /> <strong>10.</strong></li>
|
||||
</ul>
|
||||
<div class="u_btm">
|
||||
<div class="ctrl">
|
||||
<p>총 <strong>0</strong>명</p>
|
||||
<ul>
|
||||
<li><a href="#"><img src="/img/sub/btn_up.gif" alt="위" /></a></li>
|
||||
<li><a href="#"><img src="/img/sub/btn_dw.gif" alt="아래" /></a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="btngroup">
|
||||
<ul class="btn_nrm_bor column2">
|
||||
<li><a href="#" class="nrm_bor1">전체삭제</a></li>
|
||||
<li><a href="#" class="nrm_bor1">선택삭제</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- 주소록 -->
|
||||
<div class="sent_area">
|
||||
<h3 class="tit">주소록</h3>
|
||||
<div class="f_board">
|
||||
<div class="search_frm">
|
||||
<ul>
|
||||
<li class="s_word">
|
||||
<select style="width:80px;">
|
||||
<option>검색</option>
|
||||
</select>
|
||||
<input type="text" class="w_text" placeholder="검색어를 입력하세요." />
|
||||
<input type="image" src="/img/sub/btn_search.png" title="검색" class="btn_search" />
|
||||
</li>
|
||||
<li class="s_group">
|
||||
<div class="add_group">
|
||||
<select style="width:80px;">
|
||||
<option>그룹</option>
|
||||
</select>
|
||||
<input type="text" class="w_text" />
|
||||
<a href="#">추가</a>
|
||||
</div>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
<table class="table1" summary="주소록">
|
||||
<colgroup>
|
||||
<col width="10%" />
|
||||
<col width="*" />
|
||||
<col width="50%" />
|
||||
</colgroup>
|
||||
<thead>
|
||||
<tr>
|
||||
<th scope="col"><input type="checkbox" /></th>
|
||||
<th scope="col">이름(분류명)</th>
|
||||
<th scope="col">연락처</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td><input type="checkbox" /></td>
|
||||
<td>홍길동(가족)</td>
|
||||
<td>010-1234-5463</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><input type="checkbox" /></td>
|
||||
<td>홍길동(가족)</td>
|
||||
<td>010-1234-5463</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><input type="checkbox" /></td>
|
||||
<td>홍길동(가족)</td>
|
||||
<td>010-1234-5463</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><input type="checkbox" /></td>
|
||||
<td>홍길동(가족)</td>
|
||||
<td>010-1234-5463</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><input type="checkbox" /></td>
|
||||
<td>홍길동(가족)</td>
|
||||
<td>010-1234-5463</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><input type="checkbox" /></td>
|
||||
<td>홍길동(가족)</td>
|
||||
<td>010-1234-5463</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><input type="checkbox" /></td>
|
||||
<td>홍길동(가족)</td>
|
||||
<td>010-1234-5463</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><input type="checkbox" /></td>
|
||||
<td>홍길동(가족)</td>
|
||||
<td>010-1234-5463</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
<div class="paginate">
|
||||
<a href="#" class="prev">이전</a>
|
||||
<ul>
|
||||
<li><a href="#" class="active">1</a></li>
|
||||
<li><a href="#">2</a></li>
|
||||
<li><a href="#">3</a></li>
|
||||
<li><a href="#">4</a></li>
|
||||
<li><a href="#">5</a></li>
|
||||
</ul>
|
||||
<a href="#" class="next">다음</a>
|
||||
</div>
|
||||
<div class="btngroup">
|
||||
<ul class="btn_nrm column2">
|
||||
<li><a href="#" class="nrm1">선택추가</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
<!-- //주소록 -->
|
||||
</div>
|
||||
<!-- //문자전송 -->
|
||||
<!-- 부서 -->
|
||||
<div class="dep_section">
|
||||
<h3 class="tit">나의 부서</h3>
|
||||
<a href="#" class="all_send">전 부서 발송</a>
|
||||
<div class="dep_box">
|
||||
<ul>
|
||||
<li>
|
||||
<div class="part_box">
|
||||
<h4>분류1</h4>
|
||||
<select id="address1" ondblclick="setBuseo(this.value, '');" size="14" multiple="multiple">
|
||||
<option value="159">나눔통(39)</option>
|
||||
<option value="163">나눔아이앤씨(1)</option>
|
||||
</select>
|
||||
<ul class="btnarea">
|
||||
<li><a href="#">전체선택</a></li>
|
||||
<li><a href="#">전체해제</a></li>
|
||||
<li><a href="#" class="add">추가</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</li>
|
||||
<li>
|
||||
<div class="part_box">
|
||||
<h4>분류2</h4>
|
||||
<select id="address1" ondblclick="setBuseo(this.value, '');" size="14" multiple="multiple">
|
||||
<option value="159">나눔통(39)</option>
|
||||
<option value="163">나눔아이앤씨(1)</option>
|
||||
</select>
|
||||
<ul class="btnarea">
|
||||
<li><a href="#">전체선택</a></li>
|
||||
<li><a href="#">전체해제</a></li>
|
||||
<li><a href="#" class="add">추가</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</li>
|
||||
<li>
|
||||
<div class="mem_box">
|
||||
<h4>구성원</h4>
|
||||
<div class="sbox">
|
||||
<input type="text" class="w_name" placeholder="이름 또는 전화번호 검색" />
|
||||
<input type="image" src="/img/sub/btn_search.png" class="btn_search" />
|
||||
</div>
|
||||
<ul class="memlist">
|
||||
<li>
|
||||
<input type="checkbox" />
|
||||
<dl>
|
||||
<dt>학생문화센터</dt>
|
||||
<dd>0532311342</dd>
|
||||
</dl>
|
||||
</li>
|
||||
<li>
|
||||
<input type="checkbox" />
|
||||
<dl>
|
||||
<dt>학생문화센터</dt>
|
||||
<dd>0532311342</dd>
|
||||
</dl>
|
||||
</li>
|
||||
<li>
|
||||
<input type="checkbox" />
|
||||
<dl>
|
||||
<dt>학생문화센터</dt>
|
||||
<dd>0532311342</dd>
|
||||
</dl>
|
||||
</li>
|
||||
<li>
|
||||
<input type="checkbox" />
|
||||
<dl>
|
||||
<dt>학생문화센터</dt>
|
||||
<dd>0532311342</dd>
|
||||
</dl>
|
||||
</li>
|
||||
<li>
|
||||
<input type="checkbox" />
|
||||
<dl>
|
||||
<dt>학생문화센터</dt>
|
||||
<dd>0532311342</dd>
|
||||
</dl>
|
||||
</li>
|
||||
</ul>
|
||||
<ul class="btnarea">
|
||||
<li><a href="#">전체선택</a></li>
|
||||
<li><a href="#">전체해제</a></li>
|
||||
<li><a href="#" class="add">추가</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
<!-- //부서 -->
|
||||
</div>
|
||||
</div>
|
||||
<!-- //내용 -->
|
||||
|
||||
<!-- 최근번호 -->
|
||||
<div id="detaillayer4" class="maskpopbox" style="display:none;">
|
||||
<div class="popbox">
|
||||
<div class="poptit">
|
||||
<h4>최근 전송번호</h4>
|
||||
<span class="popcls"><img src="/img/sub/btn_popcls.gif" alt="닫기" /></span>
|
||||
</div>
|
||||
<div class="popct">
|
||||
<ul class="add_num">
|
||||
<li><input type="checkbox" /> <strong>1.</strong> 010-1234-6478 <a href="#"><img src="/img/sub/btn_delete.gif" alt="삭제" /></a></li>
|
||||
<li><input type="checkbox" /> <strong>2.</strong></li>
|
||||
<li><input type="checkbox" /> <strong>3.</strong></li>
|
||||
<li><input type="checkbox" /> <strong>4.</strong></li>
|
||||
<li><input type="checkbox" /> <strong>5.</strong></li>
|
||||
</ul>
|
||||
<div class="paginate">
|
||||
<a href="#" class="prev">이전</a>
|
||||
<ul>
|
||||
<li><a href="#" class="active">1</a></li>
|
||||
<li><a href="#">2</a></li>
|
||||
<li><a href="#">3</a></li>
|
||||
<li><a href="#">4</a></li>
|
||||
<li><a href="#">5</a></li>
|
||||
</ul>
|
||||
<a href="#" class="next">다음</a>
|
||||
</div>
|
||||
<div class="btngroup">
|
||||
<ul class="btn_nrm column3">
|
||||
<li><a href="#" class="nrm1">선택추가</a></li>
|
||||
<li><a href="#" class="nrm2">선택삭제</a></li>
|
||||
<li><a href="#" class="nrm2">취소</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- //최근번호 -->
|
||||
|
||||
<!-- 예약발송 -->
|
||||
<div id="detaillayer6" class="maskpopbox" style="display:none;">
|
||||
<div class="popbox">
|
||||
<div class="poptit">
|
||||
<h4>예약발송</h4>
|
||||
<span class="popcls"><img src="/img/sub/btn_popcls.gif" alt="닫기" /></span>
|
||||
</div>
|
||||
<div class="popct">
|
||||
<ul class="sl_area">
|
||||
<li>
|
||||
<select>
|
||||
<option>2017년</option>
|
||||
</select>
|
||||
</li>
|
||||
<li>
|
||||
<select>
|
||||
<option>5월</option>
|
||||
</select>
|
||||
</li>
|
||||
<li>
|
||||
<select>
|
||||
<option>10시</option>
|
||||
</select>
|
||||
</li>
|
||||
<li>
|
||||
<select>
|
||||
<option>25분</option>
|
||||
</select>
|
||||
</li>
|
||||
</ul>
|
||||
<table class="table1">
|
||||
<colgroup>
|
||||
<col width="15%" />
|
||||
<col width="14%" />
|
||||
<col width="14%" />
|
||||
<col width="14%" />
|
||||
<col width="14%" />
|
||||
<col width="14%" />
|
||||
<col width="15%" />
|
||||
</colgroup>
|
||||
<thead>
|
||||
<tr>
|
||||
<th scope="col">일</th>
|
||||
<th scope="col">월</th>
|
||||
<th scope="col">화</th>
|
||||
<th scope="col">수</th>
|
||||
<th scope="col">목</th>
|
||||
<th scope="col">금</th>
|
||||
<th scope="col">토</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td> </td>
|
||||
<td><a href="#">1</a></td>
|
||||
<td><a href="#">2</a></td>
|
||||
<td><a href="#">3</a></td>
|
||||
<td><a href="#">4</a></td>
|
||||
<td><a href="#">5</a></td>
|
||||
<td><a href="#">6</a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="#">7</a></td>
|
||||
<td><a href="#">8</a></td>
|
||||
<td><a href="#">9</a></td>
|
||||
<td><a href="#">10</a></td>
|
||||
<td><a href="#" class="today">11</a></td>
|
||||
<td><a href="#">12</a></td>
|
||||
<td><a href="#">13</a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="#">14</a></td>
|
||||
<td><a href="#">15</a></td>
|
||||
<td><a href="#">16</a></td>
|
||||
<td><a href="#">17</a></td>
|
||||
<td><a href="#">18</a></td>
|
||||
<td><a href="#">19</a></td>
|
||||
<td><a href="#">20</a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="#">21</a></td>
|
||||
<td><a href="#">22</a></td>
|
||||
<td><a href="#">23</a></td>
|
||||
<td><a href="#">24</a></td>
|
||||
<td><a href="#">25</a></td>
|
||||
<td><a href="#">26</a></td>
|
||||
<td><a href="#">27</a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a href="#">28</a></td>
|
||||
<td><a href="#">29</a></td>
|
||||
<td><a href="#">30</a></td>
|
||||
<td><a href="#">31</a></td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
<td> </td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
<p class="sl_date">2017년 4월 27일 10시 25분</p>
|
||||
<div class="btngroup">
|
||||
<ul class="btn_nrm column2">
|
||||
<li><a href="#" class="nrm1">문자예약</a></li>
|
||||
<li><a href="#" class="nrm2">예약취소</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- //예약발송 -->
|
||||
|
||||
<!-- 최근메시지 -->
|
||||
<div id="detaillayer7" class="maskpopbox" style="display:none;">
|
||||
<div class="popbox">
|
||||
<div class="poptit">
|
||||
<h4>최근메시지</h4>
|
||||
<span class="popcls"><img src="/img/sub/btn_popcls.gif" alt="닫기" /></span>
|
||||
</div>
|
||||
<div class="popct">
|
||||
<ul class="sentlist">
|
||||
<li>
|
||||
<div class="ct">홈페이지 호스팅 만료일 1일 남았습니다.<br/>-나눔아이앤씨-</div>
|
||||
<div class="btngroup">
|
||||
<ul class="btn_sm">
|
||||
<li><a href="#" class="sm1">사용</a></li>
|
||||
<li><a href="#" class="sm2">삭제</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</li>
|
||||
<li>
|
||||
<div class="ct">홈페이지 호스팅 만료일 1일 남았습니다.<br/>-나눔아이앤씨-</div>
|
||||
<div class="btngroup">
|
||||
<ul class="btn_sm">
|
||||
<li><a href="#" class="sm1">사용</a></li>
|
||||
<li><a href="#" class="sm2">삭제</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</li>
|
||||
<li>
|
||||
<div class="ct">홈페이지 호스팅 만료일 1일 남았습니다.<br/>-나눔아이앤씨-</div>
|
||||
<div class="btngroup">
|
||||
<ul class="btn_sm">
|
||||
<li><a href="#" class="sm1">사용</a></li>
|
||||
<li><a href="#" class="sm2">삭제</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</li>
|
||||
<li>
|
||||
<div class="ct">홈페이지 호스팅 만료일 1일 남았습니다.<br/>-나눔아이앤씨-</div>
|
||||
<div class="btngroup">
|
||||
<ul class="btn_sm">
|
||||
<li><a href="#" class="sm1">사용</a></li>
|
||||
<li><a href="#" class="sm2">삭제</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</li>
|
||||
<li>
|
||||
<div class="ct">홈페이지 호스팅 만료일 1일 남았습니다.<br/>-나눔아이앤씨-</div>
|
||||
<div class="btngroup">
|
||||
<ul class="btn_sm">
|
||||
<li><a href="#" class="sm1">사용</a></li>
|
||||
<li><a href="#" class="sm2">삭제</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</li>
|
||||
<li>
|
||||
<div class="ct">홈페이지 호스팅 만료일 1일 남았습니다.<br/>-나눔아이앤씨-</div>
|
||||
<div class="btngroup">
|
||||
<ul class="btn_sm">
|
||||
<li><a href="#" class="sm1">사용</a></li>
|
||||
<li><a href="#" class="sm2">삭제</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</li>
|
||||
</ul>
|
||||
<div class="paginate">
|
||||
<a href="#" class="prev">이전</a>
|
||||
<ul>
|
||||
<li><a href="#" class="active">1</a></li>
|
||||
<li><a href="#">2</a></li>
|
||||
<li><a href="#">3</a></li>
|
||||
<li><a href="#">4</a></li>
|
||||
<li><a href="#">5</a></li>
|
||||
</ul>
|
||||
<a href="#" class="next">다음</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- //최근메시지 -->
|
||||
|
||||
|
||||
|
||||
|
||||
<script type="text/javascript">
|
||||
$(function(){
|
||||
$('#rdate').helloCalendar({'clickID':'calendarimg', 'selectBox':true});
|
||||
});
|
||||
</script>
|
||||
|
||||
<!--#include virtual="/common/file/bottom.asp"-->
|
||||
Reference in New Issue
Block a user