묻고답하기
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
아래 두 소스가 같은 결과를 나타내나요? (php, jsp)
2004.02.20 16:09
요건 php
======================================================================================================
<HTML>
<HEAD>
<TITLE></TITLE>
<? include "top_menu.htm" ?>
<? include "sub_stk_06.htm" ?>
<td width="508" height="35" align="right">
<table width="126" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="67"><a href="1041-1.htm" target="ifra" onClick="MM_nbGroup('down','group1','s3menu_01','img/s3menu-on_01.gif',1)" onMouseOver="MM_nbGroup('over','s3menu_01','img/s3menu-on_01.gif','',1)" onMouseOut="MM_nbGroup('out')"><img src="img/s3menu_01.gif" name="s3menu_01" width="66" height="23" border="0"></a></td>
<td width="59"><a href="1041-2.htm" target="ifra" onClick="MM_nbGroup('down','group1','s3menu_02','img/s3menu-on_02.gif',1)" onMouseOver="MM_nbGroup('over'+ '+ ','s3menu_02','img/s3menu-on_02.gif','',1)" onMouseOut="MM_nbGroup('out')"><img src="img/s3menu_02.gif" name="s3menu_02" width="59" height="23" border="0"></a></td>
</tr>
</table>
</td>
</tr>
<tr>
<td width="508" height="366">
<iframe scrolling="auto" src="1041-1.htm" width="508" height="100%" marginheight="0" marginwidth="0" name="ifra"></iframe>
</td>
</tr>
<tr>
<td width="100%" colspan="2" height="36">
<? include "bottom.htm" ?>
</td>
</tr>
</table>
</BODY>
</HTML>
요건 jsp...
======================================================================================================
<HTML>
<HEAD>
<TITLE></TITLE>
<%@ include file="top_menu.htm" %>
<%@ include file="sub_stk_06.htm" %>
<td width="508" height="35" align="right">
<table width="126" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="67"><a href="1041-1.htm" target="ifra" onClick="MM_nbGroup('down','group1','s3menu_01','img/s3menu-on_01.gif',1)" onMouseOver="MM_nbGroup('over','s3menu_01','img/s3menu-on_01.gif','',1)" onMouseOut="MM_nbGroup('out')"><img src="img/s3menu_01.gif" name="s3menu_01" width="66" height="23" border="0"></a></td>
<td width="59"><a href="1041-2.htm" target="ifra" onClick="MM_nbGroup('down','group1','s3menu_02','img/s3menu-on_02.gif',1)" onMouseOver="MM_nbGroup('over','s3menu_02','img/s3menu-on_02.gif','+ '',1)" onMouseOut="MM_nbGroup('out')"><img src="img/s3menu_02.gif" name="s3menu_02" width="59" height="23" border="0"></a></td>
</tr>
</table>
</td>
</tr>
<tr>
<td width="508" height="366">
<iframe scrolling="auto" src="1041-1.htm" width="508" height="100%" marginheight="0" marginwidth="0" name="ifra"></iframe>
</td>
</tr>
<tr>
<td width="100%" colspan="2" height="36">
<%@ include file="bottom.htm" %>
</td>
</tr>
</table>
</BODY>
</HTML>
======================================================================================================
다 똑같은데 include 부분만 각자의 소스에 맞게 되어 있거든요.
제가 jsp는 함도 안해봐서... 또 테스트 해 볼 만한 서버가 없어서요.
그럼 답변 부탁드립니다.
======================================================================================================
<HTML>
<HEAD>
<TITLE></TITLE>
<? include "top_menu.htm" ?>
<? include "sub_stk_06.htm" ?>
<td width="508" height="35" align="right">
<table width="126" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="67"><a href="1041-1.htm" target="ifra" onClick="MM_nbGroup('down','group1','s3menu_01','img/s3menu-on_01.gif',1)" onMouseOver="MM_nbGroup('over','s3menu_01','img/s3menu-on_01.gif','',1)" onMouseOut="MM_nbGroup('out')"><img src="img/s3menu_01.gif" name="s3menu_01" width="66" height="23" border="0"></a></td>
<td width="59"><a href="1041-2.htm" target="ifra" onClick="MM_nbGroup('down','group1','s3menu_02','img/s3menu-on_02.gif',1)" onMouseOver="MM_nbGroup('over'+ '+ ','s3menu_02','img/s3menu-on_02.gif','',1)" onMouseOut="MM_nbGroup('out')"><img src="img/s3menu_02.gif" name="s3menu_02" width="59" height="23" border="0"></a></td>
</tr>
</table>
</td>
</tr>
<tr>
<td width="508" height="366">
<iframe scrolling="auto" src="1041-1.htm" width="508" height="100%" marginheight="0" marginwidth="0" name="ifra"></iframe>
</td>
</tr>
<tr>
<td width="100%" colspan="2" height="36">
<? include "bottom.htm" ?>
</td>
</tr>
</table>
</BODY>
</HTML>
요건 jsp...
======================================================================================================
<HTML>
<HEAD>
<TITLE></TITLE>
<%@ include file="top_menu.htm" %>
<%@ include file="sub_stk_06.htm" %>
<td width="508" height="35" align="right">
<table width="126" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="67"><a href="1041-1.htm" target="ifra" onClick="MM_nbGroup('down','group1','s3menu_01','img/s3menu-on_01.gif',1)" onMouseOver="MM_nbGroup('over','s3menu_01','img/s3menu-on_01.gif','',1)" onMouseOut="MM_nbGroup('out')"><img src="img/s3menu_01.gif" name="s3menu_01" width="66" height="23" border="0"></a></td>
<td width="59"><a href="1041-2.htm" target="ifra" onClick="MM_nbGroup('down','group1','s3menu_02','img/s3menu-on_02.gif',1)" onMouseOver="MM_nbGroup('over','s3menu_02','img/s3menu-on_02.gif','+ '',1)" onMouseOut="MM_nbGroup('out')"><img src="img/s3menu_02.gif" name="s3menu_02" width="59" height="23" border="0"></a></td>
</tr>
</table>
</td>
</tr>
<tr>
<td width="508" height="366">
<iframe scrolling="auto" src="1041-1.htm" width="508" height="100%" marginheight="0" marginwidth="0" name="ifra"></iframe>
</td>
</tr>
<tr>
<td width="100%" colspan="2" height="36">
<%@ include file="bottom.htm" %>
</td>
</tr>
</table>
</BODY>
</HTML>
======================================================================================================
다 똑같은데 include 부분만 각자의 소스에 맞게 되어 있거든요.
제가 jsp는 함도 안해봐서... 또 테스트 해 볼 만한 서버가 없어서요.
그럼 답변 부탁드립니다.