RE: EL expression not getting evaluated

2005-06-29 Thread Karr, David
ml-el", as opposed to "html"). If you use the same prefix as is normal, then it will decrease the number of changes you'll need to make to your pages when you move to a JSP 2.0 container. From: Phani [mailto:[EMAIL PROTECTED] Sent: Wed 06

Re: EL expression not getting evaluated

2005-06-29 Thread Phani
If it is so.. why is my expression not getting evaluated... ${partItem.intproperty} --- Rahul Akolkar <[EMAIL PROTECTED]> wrote: > On 6/29/05, Karr, David <[EMAIL PROTECTED]> wrote: > > I don't know whether WSAD 5.1.2 is a JSP 2.0 > container. If it is not, then you'll need to use > the Struts

RE: EL expression not getting evaluated

2005-06-29 Thread Pushkala_Iyer
1. Add the EL tag library descriptor to your web.xml. /tags/struts-html-el /WEB-INF/struts-html-el.tld 2. Include the required jar files in WEB-INF/lib: struts-el.jar, standard.jar 3. Import the tag library in your jsp and use the el tags: <%@ taglib uri="/tags/struts-html-el" prefi

Re: EL expression not getting evaluated

2005-06-29 Thread Rahul Akolkar
On 6/29/05, Karr, David <[EMAIL PROTECTED]> wrote: > I don't know whether WSAD 5.1.2 is a JSP 2.0 container. If it is not, then > you'll need to use the Struts-EL taglib. If it is a JSP 2.0 container, then > you'll need to make sure that your web.xml is using the Servlet 2.4 schema. > For comp

RE: EL expression not getting evaluated

2005-06-29 Thread Karr, David
I don't know whether WSAD 5.1.2 is a JSP 2.0 container. If it is not, then you'll need to use the Struts-EL taglib. If it is a JSP 2.0 container, then you'll need to make sure that your web.xml is using the Servlet 2.4 schema. From: Phani [mailto:[EMAIL PROTECT