Re: Struts html:text value initialized using JSTL

2004-02-13 Thread Kris Schneider
You can't use a tag as the attribute value for another tag. It has nothing to do with Struts or JSTL. Try using Struts-EL: %@ taglib prefix=html uri=http://jakarta.apache.org/struts/tags-html-el; % html:text property=startDate value=${sessionScope.ventureObject.startDate}/

RE: Struts html:text value initialized using JSTL

2004-02-13 Thread Wendy Smoak
From: Just Fun 4 You [mailto:[EMAIL PROTECTED] html:text property=startDate value=c:out value=${sessionScope.ventureObject.startDate} / / JSTL works best in conjunction with the Struts-EL tags: html-el:text property=startDate value=${ventureObject.startDate} / However, if something on the