Last modified by Ken McWilliams on 2012/03/10 01:50

From version Icon 2.1 Icon
edited by Ken McWilliams
on 2012/03/03 23:13
Change comment: There is no comment for this version
To version Icon 3.1 Icon
edited by Ken McWilliams
on 2012/03/03 23:17
Change comment: There is no comment for this version

Summary

Details

Icon Page properties
Content
... ... @@ -79,3 +79,19 @@
79 79   this.name = name;
80 80   }
81 81  }
82 +
83 +**Create the JSP for this action**: /WEB-INF/content/process-form **and add the following content**
84 +
85 +<%@taglib prefix="s" uri="/struts-tags"%>
86 +<%@page contentType="text/html" pageEncoding="UTF-8"%>
87 +<!DOCTYPE html>
88 +<html>
89 + <head>
90 + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
91 + <title>Display Processing Example</title>
92 + </head>
93 + <body>
94 + <h1>Display Processing Example</h1>
95 + <s:property value="name"/>
96 + </body>
97 +</html>