Hi dave here is my complete jsp code <%@ page language="java" contentType="text/html; charset=ISO-8859-1" pageEncoding="ISO-8859-1"%> <%@ taglib prefix="s" uri="/struts-tags"%> <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <title><s:text name="P_Search_Page" /></title> </head> <body> <s:form action="executePoPSearch.action" > <table> <tr> <td><s:textfield name="searchText" value="enter search keywords here" size="100" /></td> <td><s:submit value="search" /></td> </tr> </table> </s:form> </body> </html>
The result html page is as below <html> <head> <title>search page | myPoPProject, by Paradigm PoP</title> <link rel="stylesheet" href="/pop/struts/css_xhtml/styles.css" type="text/css" /> <script type="text/javascript"> // Dojo configuration djConfig = { baseRelativePath: "/pop/struts/dojo", isDebug: false, bindEncoding: "UTF-8", debugAtAllCosts: true // not needed, but allows the Venkman debugger to work with the includes }; </script> <script type="text/javascript" src="/pop/struts/dojo/dojo.js"></script> <script type="text/javascript" src="/pop/struts/simple/dojoRequire.js"></script> <script language="javascript" type="text/javascript" src="/pop/scripts/prototype-1.6.0.2.js"></script> <link rel="stylesheet" type="text/css" href="/pop/styles/pop.css" /> </head> <body> <div class="main"> <div class="header"> <h1>search page</h1> </div> <div class="content"> <form id="executePoPSearch" onsubmit="return true;" action="executePoPSearch.action" method="post"> <table> <tr> <td><div id="wwgrp_executePoPSearch_searchText" class="wwgrp"> <div id="wwctrl_executePoPSearch_searchText" class="wwctrl"> <input type="text" name="searchText" size="100" value="enter search keywords here" id="executePoPSearch_searchText"/></div> </div> </td> <td><div align="right" id="wwctrl_executePoPSearch_0"><input type="submit" id="executePoPSearch_0" value="search"/> </div> </td> </tr> </table> </form> </div> </div> <div class="footer"> <p>(c) 2008 Paradigm PoP. ALL INFORMATION PRESENTED HERE IS CONFIDENTIAL.</p> </div> </body> </html> Warm regards, Muralidhar Y [EMAIL PROTECTED] US Main: 877 KENSIUM (536.7486) India Main: +91 9949495511 India Fax: +91 9949495522 Kensium 200 S Wacker Dr, Suite 3100 Chicago, IL 60606 Confidentiality Note: ----------------------------- The information contained in this e-mail is strictly confidential and for the intended use of the addressee only. Any disclosure, use or copying of the information by anyone other than the intended recipient is prohibited. If you have received this message in error, please notify the sender immediately by return e-mail and securely discard this message. ________________________________ -----Original Message----- From: Dave Newton [mailto:[EMAIL PROTECTED] Sent: Friday, August 08, 2008 4:25 PM To: Struts Users Mailing List Subject: Re: problem with <s:text> --- On Fri, 8/8/08, Muralidhar Y <[EMAIL PROTECTED]> wrote: > when I use > <head> > <title><s:text name="P_Search_Page" /></title> > </head> > > it also adding a header in the body tag like > > <div class="header"> > <h1>search page</h1> > </div> I find it unlikely that the <s:text.../> tag is adding an element to your body element. AFAIK the text tag has no ability to do this. I'd suggest posting more information about the source JSP, your configuration, etc. Dave --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]