/web/DRCP/war/WEB-INF/jsp/hello.jsp
http://drcp.googlecode.com/ · JavaServer Pages · 36 lines · 29 code · 7 blank · 0 comment · 0 complexity · 165adfd6b73d21b935ca1081a593c1b3 MD5 · raw file
- <%@ page language="java" contentType="text/html; charset=UTF-8"
- pageEncoding="UTF-8"%>
- <%@ taglib prefix="html" uri="/WEB-INF/struts-html.tld" %>
- <%@ taglib prefix="logic" uri="/WEB-INF/struts-logic.tld" %>
-
-
- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
- <html>
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
- <title>Insert title here</title>
- </head>
- <body>
-
- <html:form action="/hello.do?action=show" >
- attribute0
- <html:text property="attribute0"/>
-
-
- <br>
- attribute1
- <html:text property="attribute1" />
- <br>
- attribute2
- <html:text property="attribute2" />
- <br>
- attribute3
- <html:text property="attribute3" />
- <br>
- <html:submit>submiT</html:submit>
-
- </html:form>
- <%= request.getAttribute("d")%>
- </body>
- </html>