在jsp页面中,表单中用户输入的信息怎样在别的页面接收

2024-11-28 00:01:54
推荐回答(4个)
回答1:

你好,我来回答
1.首先form表单中,action=“要提交到的页面mingcheng.jsp 或者是servlet”
2.在提交到的页面,通过request.getparameter("表单中的组件name");
这样就可以了,希望可以帮到你!

回答2:

使用action传到你想要提交到的页面,用request.getParameter("你传的那个值得名称")方法接受

回答3:

// 在servlet或action中先get下来,
String value = request.getParameter("name");

//在跳转页面之前,set到attribute中。
request.setAttribute("name",value);
// 这样在跳转过去的页面中就可以获取到了
String value = request.getAttribute("name");

实在解决不了就放到session中,只要会话不结束值一直存在。
不推荐此方式。

回答4:

request.getParameter("xxx");