RE: taglib: tags embedded in output

2004-09-03 Thread Wendy Smoak
From: [EMAIL PROTECTED] Example... my tag ABC evaluates to: html:select property=cd_interest_paid_option html:option value= key=Choose One/ /html:select I have used TagSupport class, it returns the above string to the JSP, but I want the output of it to be displayed. How to do that? I

RE: taglib: tags embedded in output

2004-09-02 Thread Srinivas.Amarnadh
Hi Kalki, I understood u r approach of programming. Some time back I have written a Custom that outputs a string like this bean:message key=/ .during the servlet compilation time this will be evaluated as string not as a tag. You can achieve this by extending the struts tag Select and Override

Re: taglib: tags embedded in output

2004-09-02 Thread Martin Cooper
Really the only way to do this is by modifying your own tag to incorporate the functionality of the Struts tags. It's not possible to output JSP code from a tag and have that evaluated. We had the same discussion a couple of days ago in a separate thread: