
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 |
<?xml version="1.0" encoding="UTF-8" ?> <!DOCTYPE struts PUBLIC "-//Apache Software Foundation//DTD Struts Configuration 2.5//EN" "http://struts.apache.org/dtds/struts-2.5.dtd"> <struts> <package name="template" namespace="/template" extends="struts-default"> <result-types> <result-type name="tiles" class="org.apache.struts2.views.tiles.TilesResult"/> </result-types> <action name="LayoutSatu" class="com.opensymphony.xwork2.ActionSupport"> <result type="tiles">layoutSatu</result> </action> <action name="LayoutDua" class="com.opensymphony.xwork2.ActionSupport"> <result type="tiles">layoutDua</result> </action> <action name="LayoutTiga" class="com.opensymphony.xwork2.ActionSupport"> <result type="tiles">layoutTiga</result> </action> </package> </struts> |
1 2 3 4 5 6 7 8 9 10 |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <html> <head> <META HTTP-EQUIV="Refresh" CONTENT="0;URL=upload.action"> </head> <body> <p>Loading ...</p> </body> </html> |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 |
<%@ taglib uri="http://tiles.apache.org/tags-tiles" prefix="tiles" %> <%@ page contentType="text/html; charset=UTF-8" %> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title> <tiles:getAsString name="title"/> </title> </head> <body> <table border="1" cellpadding="2" cellspacing="2" align="center"> <tr> <td height="30" colspan="2"> <tiles:insertAttribute name="header"/> </td> </tr> <tr> <td height="250"> <tiles:insertAttribute name="menu"/> </td> <td width="350"> <tiles:insertAttribute name="body"/> </td> </tr> <tr> <td height="30" colspan="2"> <tiles:insertAttribute name="footer"/> </td> </tr> </table> </body> </html> |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 |
<%@ taglib uri="http://tiles.apache.org/tags-tiles" prefix="tiles" %> <%@ page contentType="text/html; charset=UTF-8" %> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title> <tiles:getAsString name="title"/> </title> </head> <body> <table border="1" cellpadding="2" cellspacing="2" align="center"> <tr> <td height="30" colspan="2"> <tiles:insertAttribute name="header"/> </td> </tr> <tr> <td height="30" colspan="2"> <tiles:insertAttribute name="menu"/> </td> </tr> <tr> <td width="350" colspan="2"> <tiles:insertAttribute name="body"/> </td> </tr> <tr> <td height="30" colspan="2"> <tiles:insertAttribute name="footer"/> </td> </tr> </table> </body> </html> |