Nicolás Lichtmaier wrote:
> What I want (NEED DESPERATELY!!!) to do is:
>
> <%!
> void sendTable(JspWriter out)
> {
> <#
> <table width="80%">....
> #>
> }
> %>
>
> ...where "<#" is my invention... =)
You could try using:
<jsp:include file="tablecode.jsp" flush="true" />
This will include ("run") the tablecode.jsp file, which can be HTML, JSP,
whatever.
Wes