mschachter 01/01/17 12:30:27 Modified: src/doc/userGuide building_view.xml Log: Minor user guide changes Submitted By: Hal Deadman, Andrew Semprebon Revision Changes Path 1.8 +8 -8 jakarta-struts/src/doc/userGuide/building_view.xml Index: building_view.xml =================================================================== RCS file: /home/cvs/jakarta-struts/src/doc/userGuide/building_view.xml,v retrieving revision 1.7 retrieving revision 1.8 diff -u -r1.7 -r1.8 --- building_view.xml 2001/01/12 19:58:51 1.7 +++ building_view.xml 2001/01/17 20:30:23 1.8 @@ -149,7 +149,7 @@ The case above would be rendered like this using Struts: <pre> - <html:text name="username"/> + <html:text property="username"/> </pre> with no need to explicitly refer to the JavaBean from which the initial @@ -193,7 +193,7 @@ <html:message key="prompt.username"/> </th> <td align="left"> - <html:text name="username" size="16"/> + <html:text property="username" size="16"/> </td> </tr> <tr> @@ -201,7 +201,7 @@ <html:message key="prompt.password"/> </th> <td align="left"> - <html:password name="password" size="16"/> + <html:password property="password" size="16"/> </td> </tr> <tr> @@ -528,11 +528,11 @@ </p> <ul> - <li>The include <i>directive</i> (<code><%@ include file="xxxxx" - %></code>) is processed when the JSP page is compiled. It is - useful when you are including HTML code that will not need to change - at request time. It treats the text being included as static text, - much like the <code>#include</code> directive in C or C++.</li> + <li>An <%@ include file="xxxxx" %> directive can include a file that contains + java code or jsp tags. The code in the included file can even reference + variables declared earlier in the outer jsp page. The code is inlined into + the other jsp before it is compiled so it can definately contain more than + just HTML.</li> <li>The include <i>action</i> (<code><jsp:include page="xxxxx" flush="true" /></code>) is processed at request time, and is handled transparently by the server. Among other things, that means you