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

请帮忙解决struts有关问题

2012-02-05 
请各位高手帮忙解决struts问题struts-config.xml中action-mappingsactionattribute searchForm inpu

请各位高手帮忙解决struts问题
struts-config.xml中    
<action-mappings   >
        <action
            attribute= "searchForm "
            input= "/search.jsp "
            name= "searchForm "
            path= "/search "
            scope= "request "
            type= "com.cuisi.action.SearchAction "   >
            <forward   name= "success "   path= "/success.jsp?code=1 "   /> 这里可不可以象这样加参数啊,如果能,我怎么在页面上获得这个参数啊
        </action>


[解决办法]
应该可以加吧,request.getParameter( "code ");试试
[解决办法]
在你的jsp页面中加上
<%String code = request.getParameter( "code ");%>
在页面中直接调用 <%=code%>

热点排行