본문으로 바로가기
반응형

이제 시작하는 쌩초보라

다이어리 형식이오니

필요에 의해서 지나가다 보시고 잘못된게 있으면 지적바랍니다

===================================================================================



위아래 프레임을 나누어,

상 프레임에서 검색조건을 전달하고,

타겟프레임을 하단프레임으로 잡아 조회버튼 클릭시 하단프레임에 표출되게 하기 위한 html 프레임셋 설정

 

 

<html>
<head>
<meta name="GENERATOR" content="Namo WebEditor(Trial)">
<meta http-equiv="content-type" content="text/html; charset=euc-kr">
<title> BMT 조회</title>
</head>
<frameset rows="110, *">
<frame src = "FrameTopEx.jsp" frame name="header" scrolling="no" marginwidth="0" marginheight="0" border = "1">
<frame name="detail" scrolling="yes" marginwidth="10" marginheight="14">
</frameset>
<noframes>
</frameset>
</html>

 

110, * 는 상, 하단 프레임의 픽셀 수, *는 나머지 전부

 

FrameTopEx.jsp - 상단프레임에 표출될 페이지

 

detail - 하단프레임의 이름( 타겟 설정시 프레임 이름으로 사용할때 필요)

 

 

반응형