防止页面重复提交

防止页面重复提交

 

String checkNum  =  (String)request.getSession().getAttribute( " checkNum " );
  
 
if (checkNum.equals(strCheck))
 
{
  
//产生一个随机数放入页面中,作为验证码,防止页面刷新再次提交
  String strRandom = CommonUtil.getRandom();
  request.getSession().setAttribute(
"checkNum",strRandom);
 }
 

你可能感兴趣的:(防止页面重复提交)