ClassicASP frame에서 target=_top 사용하기
페이지 정보
본문
frame 문서에서 target="_top"을 사용하고 싶을때
1. 원본 프레임문서
1-1. test1_1.asp ----- 프레임 상단문서
<%
response.write "<script>"
response.write "window.open('test2.asp','_top')" ' 프레임문서를 걷어내고 다른 페이지가 뜨게 하자
response.write "</script>"
%>
1-2. test1_2.asp ----- 프레임 하단문서
문서1-2
1-2. test1.asp ----- 프레임문서
<html>
<head>
<title>해피정닷컴 1</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
</head>
<frameset rows="*, 100px" frameborder="no" border="0" framespacing="0">
<frame name="main" noresize scrolling="auto" src="test1-1.asp" marginwidth="0" marginheight="0" frameborder="no">
<frame name="session" scrolling="no" noresize src="test1-2.asp" marginwidth="0" marginheight="0" frameborder="no" />
</frameset><noframes></noframes>
2. 연결시킬 새로운 프레임문서
2-1. test2_1.asp ----- 프레임2 상단문서
문서2-1
2-2. test2_2.asp ----- 프레임2 하단문서
문서2-2
2-3. test2.asp ----- 프레임2
<html>
<head>
<title>해피정닷컴 2</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
</head>
<frameset rows="*, 100px" frameborder="no" border="1" framespacing="0">
<frame name="main" noresize scrolling="auto" src="test2-1.asp" marginwidth="0" marginheight="0" frameborder="no">
<frame name="session" scrolling="no" noresize src="test2-2.asp" marginwidth="0" marginheight="0" frameborder="no" />
</frameset><noframes></noframes>
참고자료
http://www.highdots.com/forums/macromedia-dreamweaver/redirecturl-target-127824.html
1. 원본 프레임문서
1-1. test1_1.asp ----- 프레임 상단문서
<%
response.write "<script>"
response.write "window.open('test2.asp','_top')" ' 프레임문서를 걷어내고 다른 페이지가 뜨게 하자
response.write "</script>"
%>
1-2. test1_2.asp ----- 프레임 하단문서
문서1-2
1-2. test1.asp ----- 프레임문서
<html>
<head>
<title>해피정닷컴 1</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
</head>
<frameset rows="*, 100px" frameborder="no" border="0" framespacing="0">
<frame name="main" noresize scrolling="auto" src="test1-1.asp" marginwidth="0" marginheight="0" frameborder="no">
<frame name="session" scrolling="no" noresize src="test1-2.asp" marginwidth="0" marginheight="0" frameborder="no" />
</frameset><noframes></noframes>
2. 연결시킬 새로운 프레임문서
2-1. test2_1.asp ----- 프레임2 상단문서
문서2-1
2-2. test2_2.asp ----- 프레임2 하단문서
문서2-2
2-3. test2.asp ----- 프레임2
<html>
<head>
<title>해피정닷컴 2</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
</head>
<frameset rows="*, 100px" frameborder="no" border="1" framespacing="0">
<frame name="main" noresize scrolling="auto" src="test2-1.asp" marginwidth="0" marginheight="0" frameborder="no">
<frame name="session" scrolling="no" noresize src="test2-2.asp" marginwidth="0" marginheight="0" frameborder="no" />
</frameset><noframes></noframes>
참고자료
http://www.highdots.com/forums/macromedia-dreamweaver/redirecturl-target-127824.html
댓글목록
등록된 댓글이 없습니다.