Tab library question...

2006-10-30 Thread Nathan Wilhelmi
Hello - This may be a bit off topic, and if so any recommend pointers to the right place would be great. I really like the reuse aspects of tag libraries, however I don't like doing all the println statements to emit HTML. Feels like there has to be a better way. What I would really like, I

Re: Tab library question...

2006-10-30 Thread Rahul Akolkar
On 10/30/06, Nathan Wilhelmi [EMAIL PROTECTED] wrote: Hello - This may be a bit off topic, and if so any recommend pointers to the right place would be great. I really like the reuse aspects of tag libraries, however I don't like doing all the println statements to emit HTML. Feels like there

Re: Tab library question...

2006-10-30 Thread David Smith
I would think there are two ways: 1) Write a jsp with the custom tag in it. The custom tag only does the work and exposes result beans to the jsp for rendering. Keep the whole thing in it's own jsp and then use c:import / to bring the end result into the main page. Beans in this case