标签:提交 method eth 没有 地址 control button 接受 pos
1. <form action="/controller/action" method="post">
...
</form>
*action 属性指定表单要提交到的网页地址
*method 属性指定表单提交时使用的方法(如: get , post)
2. 表单提交按钮可以使用<input type="submit" value="Submit">或<button type="submit">Submit</button>
*推荐使用<button>标签
3. MVC 中的 action 可以使用 [HttpGet] 或 [HttpPost] 特性来限制 action 只接受get请求或post请求
*如果 action 没有添加 [HttpGet] 或 [HttpPost] 特性,则两种方式的请求都接受
标签:提交 method eth 没有 地址 control button 接受 pos
原文地址:http://www.cnblogs.com/gmcn/p/6180808.html