개발자/JSP

홈페이지 Login & targer From 예제

김진리 2013. 2. 4. 17:57


game.zip



index.jsp



<%@ page contentType="text/html;charset=euc-kr"%>

<%

String target = request.getParameter("target") + ".jsp";

%>


<html>

<body>

<head><title>모듈화2</title></head>

<table width="500" border="1"  cellpadding="5" align="center">

<tr>

<td colspan="2">

<jsp:include page="include/top.jsp" flush="false" />

</td>

</td>


<tr>

<td valign="top">

<jsp:include page="include/menu.jsp" flush="false"/>

</td>

<td width="80%" valign="middle">

<jsp:include page="<%=target%>" flush="false" />

</td>

</tr>


<tr>

<td colspan="2">

<jsp:include page="include/bottom.jsp" flush="false"/>

</td>

</tr>

</body>

</html>