RE: [struts-user] Can I use in

2012-06-03 Thread Jason Pyeron
> -Original Message- > From: samsongbest > Sent: Sunday, June 03, 2012 10:44 > To: user > Subject: [struts-user] Can I use in > > Can I use in to control using different > cssClass? Always failed when I tried. > But it works in . Since the tag belongs to a taglib, you cannot. But yo

Re: Can I use in

2012-06-03 Thread Dave Newton
Of course not; you cannot nest one JSP tag inside another JSP tag. In the *body content* of a tag, sure. HTML elements are not JSP tags, which is why it works in a normal HTML element. (Side note, make sure you're aware of what things in a JSP page are, where they come from, where they're executed

Can I use in

2012-06-03 Thread samsongbest
Can I use in to control using different cssClass? Always failed when I tried. But it works in . Sam