"Gutman, Larry" wrote:
>
> I have a servlet that returns a table with quotes in it and I would like to
> include the results in a html page if possible. Can I use a SSI EXEC with a
> servlet? Does anyone have experience with this?
Take a look at JSP instead of SSI. You can include the result of a servlet
with the <jsp:include> action in a JSP page. But you may want to rethink
your design, and let the servlet just get the raw data instead of generating
HTML. If it pass that data to a JSP page, the JSP page can rendered it as
HTML.
See <http://java.sun.com/products/jsp/> for details.
Hans
--
Hans Bergsten [EMAIL PROTECTED]
Gefion Software http://www.gefionsoftware.com
===========================================================================
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST".
Some relevant FAQs on JSP/Servlets can be found at:
http://java.sun.com/products/jsp/faq.html
http://www.esperanto.org.nz/jsp/jspfaq.html
http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets