레이어 팝업 > 기술자료 | 해피정닷컴

레이어 팝업 > 기술자료

본문 바로가기

사이트 내 전체검색

레이어 팝업 > 기술자료

ClassicASP 레이어 팝업

페이지 정보


본문

Classic ASP 를 이용해서 레이어로 뜨는 팝업을 만들때 사용합니다.
2개 이상의 팝업도 사용할수 있습니다.


디비 팝업 테이블 필드
Cookie_Name  :  팝업 고유변수
Top_Locate  :  좌측 상단 위치
Left_Locate  :  좌측 왼쪽 위치
W_Scale  :  팝업창 넓이
H_Scale  :  팝업창 높이 ( 하루안뜨기 제외한 높이값 )

<!-- POPUP -->
<script type="text/javascript">
function setCookie( name, value, expiredays ) {
    var todayDate = new Date();
    todayDate.setDate( todayDate.getDate() + expiredays );
    document.cookie = name + "=" + escape( value ) + "; path=/; expires=" + todayDate.toGMTString() + ";"
}
</script>
<%
' POPUP 시작
dim hp_PopupLayer, hp_PopupLayer_top, hp_PopupLayer_left, hp_PopupLayer_width, hp_PopupLayer_height
'dim rs_popup
set rs_popup=server.CreateObject ("ADODB.RecordSet")
'sql = "select count(idx) from "&DBLeft&"_Popup where P_Type = 'D' and UseTF='1' and SDate <= '2021-08-11' and EDate >='2021-08-11'"
sql_popup = "select * from "& DBLeft &"_Popup where P_Type = 'D' and UseTF='1' and SDate <= '"& date &"' and EDate >='"& date &"'"
rs_popup.open sql_popup,db,1

if rs_popup.bof or rs_popup.eof then
else
    do until rs_popup.eof
        ' 반복 시작
        hp_PopupLayer        = rs_popup("Cookie_Name")  ' 팝업 고유변수
        hp_PopupLayer_top    = rs_popup("Top_Locate")  ' 좌측 상단 위치
        hp_PopupLayer_left   = rs_popup("Left_Locate")  ' 좌측 왼쪽 위치
        hp_PopupLayer_width  = rs_popup("W_Scale") ' 팝업창 넓이
        hp_PopupLayer_height = rs_popup("H_Scale")  ' 팝업창 높이 ( 하루안뜨기 제외한 높이값 )
        %>
        <script>
        function closeWin<% response.write hp_PopupLayer %>() {
            if ( document.popForm<% response.write hp_PopupLayer %>.chkbox.checked ){
                setCookie( "popCookie<% response.write hp_PopupLayer %>", "done" , 1 );
            }
            document.all['popDiv<% response.write hp_PopupLayer %>'].style.visibility = "hidden";
        }
        </script>
        <div style="position:relative; z-index:1000; left:0px; top:0px;">
            <div id="popDiv<% response.write hp_PopupLayer %>" style="border:1px solid #4E4E4E; position:absolute; width:<% response.write hp_PopupLayer_width %>px; height:<% response.write hp_PopupLayer_height %>px; z-index:1; left:<% response.write hp_PopupLayer_left %>px; top:<% response.write hp_PopupLayer_top %>px; visibility:hidden;">
                <div>
                    <% response.write rs_popup("Contents") %>
                </div>
                <div style="font-size:12px; background-color:#000000; color:#ffffff; text-align:right; height:25px; line-height:25px; ">
                    <form name="popForm<% response.write hp_PopupLayer %>" style="padding:0; margin:0;">
                        <input type="checkbox" name="chkbox" value="checkbox"> 오늘 하루 이 창을 열지 않음
                        <a href="javascript:closeWin<% response.write hp_PopupLayer %>();" style="text-decoration: none; color:#ffffff"><strong>[닫기]</strong></a>&nbsp;&nbsp;
                    </form>
                </div>
            </div>
        </div>
        <script type="text/javascript">
            cookiedata = document.cookie;    
            if ( cookiedata.indexOf("popCookie<% response.write hp_PopupLayer %>=done") < 0 ) {      
                document.all['popDiv<% response.write hp_PopupLayer %>'].style.visibility = "visible";
            } else {
                document.all['popDiv<% response.write hp_PopupLayer %>'].style.visibility = "hidden";
            }
        </script>
        <%
        ' 반복 끝
  rs_popup.movenext
  loop
end if
rs_popup.close
'db2.close
' POPUP 끝
%>
<!-- //POPUP -->

댓글목록

등록된 댓글이 없습니다.


Total 2,641건 8 페이지
  • RSS
기술자료 목록
2501
MySQL   7267  2021-11-24 00:17 ~ 2021-11-24 00:22  
2500
그누보드   4796  2021-11-21 05:59 ~ 2021-11-24 00:20  
2499
전자결제   3843  2021-11-19 12:07 ~ 2021-11-19 14:51  
2498
HTML   8718  2021-11-18 16:00  
2497
PHP   6959  2021-11-09 17:52 ~ 2021-11-09 17:57  
2496
MySQL   4145  2021-11-08 16:13 ~ 2021-11-08 17:29  
2495
일반   4798  2021-11-06 01:29 ~ 2021-11-06 09:23  
열람
ClassicASP   4552  2021-11-01 02:08 ~ 2021-11-01 02:40  
2493
Editor   5879  2021-10-26 18:16 ~ 2021-11-09 14:15  
2492
그누보드   4851  2021-10-24 02:39  
2491
MySQL   3990  2021-10-18 12:18 ~ 2021-10-18 14:43  
2490
영카트   4644  2021-10-12 18:54  
2489
그누보드   4989  2021-10-08 17:20 ~ 2021-10-21 15:24  
2488
그누보드   5204  2021-10-08 14:45 ~ 2021-10-08 16:11  
2487
그누보드   6267  2021-10-08 07:41 ~ 2021-10-14 10:40  
2486
WordPress   4229  2021-09-16 14:14  
2485
JavaScript   6932  2021-09-14 19:34 ~ 2021-09-15 17:06  
2484
그누보드   4830  2021-09-02 12:15 ~ 2021-09-02 15:15  
2483
그누보드   4777  2021-08-31 18:52  
2482
XpressEngine   4339  2021-08-30 20:15 ~ 2021-08-30 23:16  

검색

해피정닷컴 정보

회사소개 회사연혁 협력사 오시는길 서비스 이용약관 개인정보 처리방침

회사명: 해피정닷컴   대표: 정창용   전화: 070-7600-3500   팩스: 042-670-8272
주소: (34368) 대전시 대덕구 대화로 160 대전산업용재유통단지 1동 222호
개인정보보호책임자: 정창용   사업자번호: 119-05-36414
통신판매업신고: 제2024-대전대덕-0405호 [사업자등록확인]  
Copyright 2001~2024 해피정닷컴. All Rights Reserved.