Hi, I have a search page which only had forms... I can include this page on any part of my
JSP as I please because it doesn't generate any dynamic contenet. However, now I realized that I need to include dynamic content... For example, I need a html:select tag that would be poppulated based on the records on the database... But to do this, I need to come from the controller which would render my template, un-reusable in other parts of my page... I've thougt of different solutions, mainly...
1. Type all the option tags manually.
2. AJAX?
3. Maybe <jsp:include page="/actions/someactions.do"/> would work?
4. Maybe
Struts has other alternatives to this problem...
I'm sure many of you have experienced this... I'm trying to remain as model 2 as possible... Thanks!