首页 > 代码库 > struts2 action 页面与action参数的传递的三种方式

struts2 action 页面与action参数的传递的三种方式

第一种:

初始页面:

<form action="LoginAction.action" method="post">

  用户名:<input type="text" name="username" >

  密码:<input type="password" name="password" >

  <input type="button" value="http://www.mamicode.com/提交" />

</form>

struts2 action 页面与action参数的传递的三种方式