本文实例讲述了JSP针对表单重复提交的处理方法。分享给大家供大家参考,具体如下:
1. 在生成表单时执行如下:
if (isRedo(request, "forum_add")) { //提示重复提交,作相关处理}
相关函数:
/*** 判断是否为重复提交* 1,检查Session中是否含有指定名字的属性* 2,如果Session中没有该属性或者属性为空,证明已被处理过,判断为重复提交* 3,否则,证明是第一次处理,并将属性从Session中删除。* @param key String*/private boolean isRedo(HttpServletRequest request, String key) { String value = (String) request.getSession().getAttribute(key); if (value == null) { return true; } else { request.getSession().removeAttribute(key); return false; }}
希望本文所述对大家JSP程序设计有所帮助。
新闻热点
疑难解答