首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > JAVA > Java Web开发 >

Struts页面刷新有关问题

2012-01-18 
Struts页面刷新问题项目用struts提交一个表单后,我为了能够让用户继续输入,所以在Action中处理完刚刚提交

Struts页面刷新问题
项目用struts

提交一个表单后,我为了能够让用户继续输入,所以在Action中处理完刚刚提交的内容后再forward到刚才的输入页面,

就是说:input.jsp   ->   regOrder.do   -> input.jsp


但是在action执行结束并再次跳转到input.jsp后,刚刚输入的内容还存在在表单内,

请问用什么办法解决该问题??????

[解决办法]
将表单内的属性中 加上 value= " "
就ok了
[解决办法]
ActionForm清空
[解决办法]
作用域设置成request就可以了。
[解决办法]
ActionForm清空

[解决办法]
在struts-config.xml中
<forward name= "success "
path= "/xxxx.jsp "
contextRelative= "true "
redirect= "true " /> redirect=true就可以了。
[解决办法]
redirect=true
[解决办法]

在struts-config.xml中
<forward name= "success "
path= "/xxxx.jsp "
contextRelative= "true "
redirect= "true " /> redirect=true就可以了。



[解决办法]
把form清空
[解决办法]
楼上那些都说了,我没其它的办法了
[解决办法]
value= " "
[解决办法]
learn

热点排行