RE: How come didn't regonize variable?

2003-07-11 Thread Chen, Gin
ries Users List' Subject: RE: How come didn't regonize variable? Thanks! I got it to work by adding the formBeanName in front. I thought if I didn't specify anything in front, all four scopes(page, request, session, and application) would be looked up, and for sure if would

RE: How come didn't regonize variable?

2003-07-10 Thread Yansheng Lin
riginal Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: July 10, 2003 12:24 PM To: [EMAIL PROTECTED] Subject: Re: How come didn't regonize variable? Peter and Matt are both correct if your form-bean is a DynaActionForm. If you are using a bean that you c

Re: How come didn't regonize variable?

2003-07-10 Thread billy . bacon
t" > <[EMAIL PROTECTED]> > Sent: Thursday, July 10, 2003 2:15 PM > Subject: Re: How come didn't regonize variable? > > > > The sortField looks like a property of your > html:form. Thus it exists in > > the form bean, not in scope by itself. So to use

Re: How come didn't regonize variable?

2003-07-10 Thread Sgarlata Matt
Actually I think you have to do Matt - Original Message - From: "Peter Smith" <[EMAIL PROTECTED]> To: "Tag Libraries Users List" <[EMAIL PROTECTED]> Sent: Thursday, July 10, 2003 2:15 PM Subject: Re: How come didn't regonize variable? > The

Re: How come didn't regonize variable?

2003-07-10 Thread Peter Smith
-0600 > To: Tag Libraries Users List <[EMAIL PROTECTED]> > Subject: Re: How come didn't regonize variable? > > The sortField looks like a property of your html:form. Thus it exists in > the form bean, not in scope by itself. So to use c:out, you would need to > do

Re: How come didn't regonize variable?

2003-07-10 Thread Peter Smith
The sortField looks like a property of your html:form. Thus it exists in the form bean, not in scope by itself. So to use c:out, you would need to do this: Hope this helps, Peter -- Peter Smith Software Engineer InfoNow Corporation > From: "Yansheng Lin" <[EMAIL PROTECTED]> > Reply-To: "T

Re: How come didn't regonize variable?

2003-07-10 Thread billy . bacon
Yansheng, Two questions for you 1.) Is sortField a property in your form-bean? 2.) If yes to question 1, are you using a DynaActionForm for your form-bean? - Billy - On Thu, 10 Jul 2003 14:01:59 -0400, Chris Winters wrote: > > Yansheng Lin wrote: > > I have a simple statement in my jsp f

Re: How come didn't regonize variable?

2003-07-10 Thread Chris Winters
Yansheng Lin wrote: I have a simple statement in my jsp file: The output source is: nothing As you can see, the struts tag rendered the value, but didn't. I am new to JSTL, so I have no clue why this didn't work. The 'h