Re: JSP expressions inside custom tags

2001-06-09 Thread Craig R. McClanahan
On Fri, 8 Jun 2001, Erich Meier wrote: > Hi! > > I am evaluating struts for a new project. One problem I wasn't able to solve > was the integration of JSP expressions inside the attributes of > custom tags. > > My code looks like this: > > > <% String name = ((PElement)pelement).getName();

Re: JSP expressions inside custom tags

2001-06-08 Thread Oleg V Alexeev
Hello Erich, Friday, June 08, 2001, 12:56:42 PM, you wrote: EM> My code looks like this: EM> EM> <% String name = ((PElement)pelement).getName(); %> EM> EM>^^^ Here is my problem! EM> EM> EM> try this - -- Best regards, Oleg

Re: JSP expressions inside custom tags

2001-06-08 Thread Jim Richards
try "> You need to have the <%= %> present the whole string, not just the single part. At 10:56 AM 8/06/01 +0200, you wrote: >Hi! > >I am evaluating struts for a new project. One problem I wasn't able to solve >was the integration of JSP expressions inside the attributes of >custom ta

JSP expressions inside custom tags

2001-06-08 Thread Erich Meier
Hi! I am evaluating struts for a new project. One problem I wasn't able to solve was the integration of JSP expressions inside the attributes of custom tags. My code looks like this: <% String name = ((PElement)pelement).getName(); %> ^^^ Here is my problem!