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

레이어 팝업 > 기술자료

본문 바로가기

사이트 내 전체검색

레이어 팝업 > 기술자료

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건 1 페이지
  • RSS
기술자료 목록
2641
그누보드   182  2024-11-26 21:14 ~ 2024-11-26 21:22  
2640
그누보드   220  2024-11-22 10:52 ~ 2024-11-22 11:03  
2639
호스팅   214  2024-11-19 14:41 ~ 2024-11-19 21:17  
2638
Linux   154  2024-11-18 15:45 ~ 2024-11-18 15:48  
2637
일반   172  2024-11-15 16:45 ~ 2024-11-15 16:46  
2636
Secure   194  2024-11-06 18:48 ~ 2024-11-06 18:50  
2635
영카트   349  2024-10-21 13:44 ~ 2024-10-21 19:42  
2634
전자결제   738  2024-09-05 09:30  
2633
MySQL   994  2024-03-29 14:14 ~ 2024-03-29 14:14  
2632
그누보드   1229  2024-02-23 18:40 ~ 2024-02-24 06:13  
2631
JavaScript   1345  2024-02-16 18:50 ~ 2024-02-16 20:37  
2630
Java   1304  2024-02-06 16:49  
2629
PHP   1484  2024-02-06 16:42  
2628
호스팅   1397  2024-01-29 12:54  
2627
PHP   1361  2024-01-26 11:04 ~ 2024-01-26 11:13  
2626
MySQL   1536  2024-01-08 17:37 ~ 2024-03-14 16:00  
2625
SQL   1709  2024-01-08 12:36  
2624
영카트   1745  2024-01-04 14:57  
2623
일반   2632  2023-12-15 18:33  
2622
Android   2101  2023-11-30 18:48 ~ 2023-11-30 19:41  

검색

해피정닷컴 정보

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

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