custom tag as content in template field?

2002-01-11 Thread Michael Stacey
Is it possible to somehow use a custom JSP tag as content in a page template? For example, in a template: table border=1 cellspacing=0 cellpadding=0 width=610 tr tdtemplate:get name='image'//td tdtemplate:get name='prodinfo'//td /tr trtd colspan=2template:get

Re: custom tag as content in template field?

2002-01-11 Thread Cedric Dumoulin
You can't put jsp tag as value of another jsp tag attribute. But there is a solution. Try template:put name='addbutton' mytag:button prodid=001/ /template:put Cedric Michael Stacey wrote: Is it possible to somehow use a custom JSP tag as content in a page template? For