Re: Problem in populating html controls from Bean...

2005-08-05 Thread Laurie Harper
Wendy Smoak wrote: From: "Laurie Harper" <[EMAIL PROTECTED]> This really should be an FAQ :-) The problem is that it's not legal to nest JSP tags that way. Try: That prevents the framework from re-displaying the user's input if the form fails validation. At the risk of repeating myself:

Re: Problem in populating html controls from Bean...

2005-08-04 Thread Rick Reumann
Wendy Smoak wrote the following on 8/4/2005 1:27 PM: That prevents the framework from re-displaying the user's input if the form fails validation. At the risk of repeating myself: the place to pre-populate your form beans is in the Action, before you forward to the JSP. Yes exactly. A

Re: Problem in populating html controls from Bean...

2005-08-04 Thread Wendy Smoak
From: "Laurie Harper" <[EMAIL PROTECTED]> This really should be an FAQ :-) The problem is that it's not legal to nest JSP tags that way. Try: That prevents the framework from re-displaying the user's input if the form fails validation. At the risk of repeating myself: the place to pre-

Re: Problem in populating html controls from Bean...

2005-08-04 Thread Laurie Harper
This really should be an FAQ :-) The problem is that it's not legal to nest JSP tags that way. Try: L. Swapnil Patil wrote: HI all, I want to populate html :text from someBean (request scope) and also want to associate that html:text with FormBean. My jsp page is like this

Problem in populating html controls from Bean...

2005-08-03 Thread Swapnil Patil
HI all, I want to populate html :text from someBean (request scope) and also want to associate that html:text with FormBean. My jsp page is like this Title : " > I am gett