开发者

Send html table to a servlet to a jsp

开发者 https://www.devze.com 2023-01-11 21:44 出处:网络
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.set开发者_如何学JAVAAttributes(\"table\",tableHtml);.If using the

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.set开发者_如何学JAVAAttributes("table",tableHtml);.


If using the above setAttribute you can retrieve it in a JSP like so:

<%= ((String)request.getAttribute("table"))%>
0

精彩评论

暂无评论...
验证码 换一张
取 消