hello, how can i send html table to a servlet to a jsp
in my Action class i have a table i want to send this table to my jsp with a request.setAttributes("table",tableHtml);
hello, how can i send html table to a servlet to a jsp
in my Action class i have a table i want to send this table to my jsp with a request.setAttributes("table",tableHtml);
If using the above setAttribute you can retrieve it in a JSP like so:
<%= ((String)request.getAttribute("table"))%>