Re: Using the template tag library with parameters like jsp:param

2002-08-31 Thread jw
2sdk1.4.0_01/jakarta-tomcat-4.0.4) Thanks! jw - Original Message - From: "jw" <[EMAIL PROTECTED]> To: "Struts Users Mailing List" <[EMAIL PROTECTED]> Sent: Saturday, August 31, 2002 1:28 PM Subject: Re: Using the template tag library with parameters like jsp:para

Re: Using the template tag library with parameters like jsp:param

2002-08-31 Thread jw
Hi All! I've seen a number of posts looking for help/info on the this type of error message (i.e., "javax.servlet.ServletException: Exception creating bean of class ???.???.xxxForm: java.lang.ClassNotFoundException: ???.???.xxxForm") that occurs when they attempt to test their "struts" applica

Re: Using the template tag library with parameters like jsp:param

2002-08-31 Thread Eddie Bush
There is also Tiles for this sort of thing. David Geary wrote: > CB Thomas wrote: > >> With jsp:include, I can pass parameter values to the included page by >> using jsp:param. >> >> Can I get this functionality using the Struts template tag library? > > Yes. Use the direct attribute, like this

Re: Using the template tag library with parameters like jsp:param

2002-08-31 Thread David Geary
CB Thomas wrote: > With jsp:include, I can pass parameter values to the included page by > using jsp:param. > > Can I get this functionality using the Struts template tag library? Yes. Use the direct attribute, like this: Then in your template, you can access that value; for example, like th

Using the template tag library with parameters like jsp:param

2002-08-31 Thread CB Thomas
With jsp:include, I can pass parameter values to the included page by using jsp:param. Can I get this functionality using the Struts template tag library? If so, can I use request.getParameter to retrieve values in the included page? ___