页面传值问题
forward()不能转向有form的jsp
但我又不想在url中显示传递的参数,请问有什么方法吗?
forward()不能转向有form的jsp
但我又不想在url中显示传递的参数,请问有什么方法吗?
方法很多
如果是提交表单的话,把method改成post
如果不是action,就用hidden控件或利用隐式对象的setAttribute()传
String path=request.getContentPath();
String dist=path+"........jsp?username="+username
response.sendRedirect(dist);
我知道这样肯定回出现传递的参数
但是我用forword又转不过去