码迷,mamicode.com
首页 > 其他好文 > 详细

Struct初学的,页面跳转

时间:2014-12-11 22:08:28      阅读:133      评论:0      收藏:0      [点我收藏+]

标签:style   http   io   ar   color   os   sp   for   on   

Filter控制器 

jsp页面代码

<form action="page_login.action" method="post">
     user:<input type="text" name="user">
     pass:<input type="password" name="pass">
     <input type="submit" value="sure">
         </form>
    <a href="page_reg.action">注册</a>

 

 

解决乱码的问题:POST 请求方法

<% request.setCharacterEncoding("UTF-8"); %>

Filter

 

HttpServletRequest req= (HttpServletRequest) request;

 String Serverpath=req.getServletPath();

 

if(Serverpath.equals("/page_input.action"))

{

request.getRequestDispatcher("input.jsp").forward(request, response);

Struct初学的,页面跳转

标签:style   http   io   ar   color   os   sp   for   on   

原文地址:http://www.cnblogs.com/codemouserman/p/4158587.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!