--- On Wed, 9/17/08, MyAshok wrote: > Is it possible to use html tag instead struts 2 tag which > should implement the autowiring.
Well no, that's what the tag *does* (amongst other things). > Where i did wrong. You didn't provide the value anywhere. > Please give me the solution ASAP. ASAP, huh? Must be really important. Use the S2 tag. Alternatively, you could use an HTML input element and fill the value yourself, if you don't mind losing the rest of the S2 tag functionality (error reporting, theme artifacts, etc.) <input type="text" name="username" value="${username}"/> if you're using a JSP 2.0 container, or <input type="text" name="username" value="<s:property value="username"/>"/> If your issue is actually with the default "xhtml" theme and the table tags it renders you could also just use the "simple" theme either for the entire form. Dave "Sure hope I answered your question in time" Newton --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]