Re: bean:write not displaying the intended values

2006-11-16 Thread robin bajaj
Good Stuff, it worked, I was missing a quote in my taglib declaration. Instead of <%@ taglib uri="/WEB-INF/struts-bean.tld" prefix="bean" %> it was <%@ taglib uri=/WEB-INF/struts-bean.tld" prefix="bean" %> Missing " before /WEB-INF Thanks a ton, - R Chris Loschen wrote: Did you include the ta

RE: bean:write not displaying the intended values

2006-11-16 Thread Chris Loschen
Did you include the taglib reference in your JSP page? Something like this: <%@ taglib uri="/WEB-INF/struts-bean.tld" prefix="bean" %> Without it, the JSP can't find the custom tag and you get the behavior you're describing. Hope that helps. Chris Loschen -Original Message- From: rob

RE: bean:write not displaying the intended values

2006-11-16 Thread Richard Allwood
Are you including the taglib declaration in your JSP? It should be something like: <%@ taglib prefix="bean" uri="http://struts.apache.org/tags-bean"; %> -Original Message- From: robin bajaj [mailto:[EMAIL PROTECTED] Sent: Friday, 17 November 2006 9:38 a.m. To: Struts Users Mailing Lis