0
如何發送html表到servlet到jsp?將html表發送到servlet到jsp
在我的Action類中,我有一張表,我想將這張表發送給我的jsp,其編號爲request.setAttributes("table",tableHtml);
。
如何發送html表到servlet到jsp?將html表發送到servlet到jsp
在我的Action類中,我有一張表,我想將這張表發送給我的jsp,其編號爲request.setAttributes("table",tableHtml);
。
如果使用上面的setAttribute你可以像這樣在JSP檢索:
<%= ((String)request.getAttribute("table"))%>
THX您的答覆;) – Mercer 2010-08-18 14:26:08