页面刷新有关问题

页面刷新问题
在一个列表页面(jsp)的每一行后面有一个删除按钮(D),其对应于D.Do及D.java
public   class   Dextends   BaseAction   {
public   ActionForward   execute(ActionMapping   actionMapping,
ActionForm   actionForm,   HttpServletRequest   request,HttpServletResponse   response)   throws   ServiceException   {
this.getCommAutoOptService().deleteTempOptResult(参数);//执行删除方法
return   null;//actionMapping.findForward( "B.do ");
}
现在的问题是:点击删除按钮,删除成功后,自动刷新列表页面(jsp)以便查看本页面某条记录确实被删除,其中列表jsp页面是由一个链接 <a   class= "tableFontLink "   href= "B.do?date= <%=valueTime%> &unitId= <%=unitId%> "> 进入删除页面 </a> 引发的
我的思路是return   actionMapping.findForward( "B.do ");可是不能传递date、unitId参数,谁来教我

------解决方案--------------------
不可能,肯定可以,要不然怎么叫转发呢
------解决方案--------------------
return actionMapping.findForward( "jsp ");
返回本页
你的列表应该是个form
在本页onload时用 <body onload= "checkDelete() "> 判断是否删除.
function checkDelete(){
if( <%=(String)request.getAttribute( "isdelete ")%> ==true){ window.document.forms[0].action= "B.do?date= "+ <%=valueTime%> + "&unitId= "+ <%=unitId%> ;
window.document.forms[0].submit();
}
}
isdelete这个request参数,你在D这个action中设置一下
不知道这样可不可以..