묻고답하기
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
ASP에서 팝업창 띄우기 위해
2005.03.05 16:59
ASP바탕에서 팝업창을 띄우기 위해 이렇게 했는데 제가 ASP쪽을 몰라 두개를 띄우는 걸 모르겠습니다.
noticeWindow = window.open('./pop/pink.htm','','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,width=380,height=485,top=20,left=260');
noticeWindow.opener = self;
이쪽을 pink.htm을 주소도 바꾸고 창 크기고 바꾸어서 한줄을 작성해봤습니다만 창이 두개가 안뜨더군요.
그래서 noticeWindow.opener = self; 을 하나 더 넣어보고 했지만 어떻게 하는지 모르겠더군요
이 팝업을 기능은 그냥 작성한 하나의 페이지를 팝업으로 만들고 하루동안 창을 열지 않게 하는 기능이 있습니다.
<헤드 사이에 넣습니다.>
-----------
<script LANGUAGE="JavaScript">
function getCookie( name )
{
var nameOfCookie = name + "=";
var x = 0;
while ( x <= document.cookie.length )
{
var y = (x+nameOfCookie.length);
if ( document.cookie.substring( x, y ) == nameOfCookie ) {
if ( (endOfCookie=document.cookie.indexOf( ";", y )) == -1 )
endOfCookie = document.cookie.length;
return unescape( document.cookie.substring( y, endOfCookie ) );
}
x = document.cookie.indexOf( " ", x ) + 1;
if ( x == 0 )
break;
}
return "";
}
if ( getCookie( "Notice2" ) != "done" )
{
noticeWindow = window.open('./pop/pink.htm','','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,width=380,height=485,top=20,left=260');
noticeWindow.opener = self;
}
-->
</SCRIPT>
----------------------
noticeWindow = window.open('./pop/pink.htm','','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,width=380,height=485,top=20,left=260');
noticeWindow.opener = self;
이쪽을 pink.htm을 주소도 바꾸고 창 크기고 바꾸어서 한줄을 작성해봤습니다만 창이 두개가 안뜨더군요.
그래서 noticeWindow.opener = self; 을 하나 더 넣어보고 했지만 어떻게 하는지 모르겠더군요
이 팝업을 기능은 그냥 작성한 하나의 페이지를 팝업으로 만들고 하루동안 창을 열지 않게 하는 기능이 있습니다.
<헤드 사이에 넣습니다.>
-----------
<script LANGUAGE="JavaScript">
function getCookie( name )
{
var nameOfCookie = name + "=";
var x = 0;
while ( x <= document.cookie.length )
{
var y = (x+nameOfCookie.length);
if ( document.cookie.substring( x, y ) == nameOfCookie ) {
if ( (endOfCookie=document.cookie.indexOf( ";", y )) == -1 )
endOfCookie = document.cookie.length;
return unescape( document.cookie.substring( y, endOfCookie ) );
}
x = document.cookie.indexOf( " ", x ) + 1;
if ( x == 0 )
break;
}
return "";
}
if ( getCookie( "Notice2" ) != "done" )
{
noticeWindow = window.open('./pop/pink.htm','','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,width=380,height=485,top=20,left=260');
noticeWindow.opener = self;
}
-->
</SCRIPT>
----------------------