你好,我来回答
1.首先form表单中,action=“要提交到的页面mingcheng.jsp 或者是servlet”
2.在提交到的页面,通过request.getparameter("表单中的组件name");
这样就可以了,希望可以帮到你!
使用action传到你想要提交到的页面,用request.getParameter("你传的那个值得名称")方法接受
// 在servlet或action中先get下来,
String value = request.getParameter("name");
//在跳转页面之前,set到attribute中。
request.setAttribute("name",value);
// 这样在跳转过去的页面中就可以获取到了
String value = request.getAttribute("name");
实在解决不了就放到session中,只要会话不结束值一直存在。
不推荐此方式。
request.getParameter("xxx");