添加一个查询参数到URI中,在添加之前应进行检查。
Action中的内容
ActionForward forwrad = mapping . findForward(" show" );
StringBuffered path = new StringBuffered(forward.getPath());
if ( path.indexOf("?") >= 0 )
{
path.append(" paramId=paramValue");
}
else
{
path.append("?paramId=paramValue");
}
return new ActionForward( path.toString() );
struts-config.xml中的内容
<forward name="show" path="/show.jsp" />
posted on 2007-08-20 12:29
Ke 阅读(718)
评论(0) 编辑 收藏 所属分类:
struts