jsp页面跳转问题?应该怎么写啊?
request.getRequestDispatcher("/adminQueryPlate").forward(request,response);红色的部分写的对不对啊?可不可以这样写:
request.getRequestDispatcher("adminQueryPlate.do").forward(request,response);
或是
request.getRequestDispatcher("adminQueryPlate").forward(request,response);
我用的是Eclipse开发工具
我想从一个Action类提交到另一个Action类,应该是上面的写法,可以我的程序为什么报404错误?
我的想法是: Action类到(通过什么方法跳转)Action类再到页面
我相应的配置文件如下:
<action path="/adminQueryPlate" type="com.yourcompany.struts.action.AdminQueryPlateAction">
<forward name="adminQueryPlateAll" path="/admin_5_1.jsp" />
</action>
应该怎么写才对啊?急
<forward name="adminQueryPlateAll" path="/admin_5_1.jsp" />
</action>
[此贴子已经被作者于2007-8-20 10:30:54编辑过]