Java Servlet - To Servlet or not to Servlet ?
Im doing on this auction system using Java.
A few question that i ponder:
Usually, for the browse function, do people usually send to servlet then dislay the book categories? (hyperlink --> BrowseServlet --> Browse.jsp)
Or just display the categories in the JSP itself ?
Second, i have a search function, do ppl post the input to servlet, then process and post to another search result page (search.jsp --> SearchServlet --> searchresult.jsp) ?
or search.jsp --> searchresult.jsp ?
Kinda confused here.
Thanks.

