码迷,mamicode.com
首页 > Web开发 > 详细

.net mvc 一个Action的 HttpGet 和 HttpPost

时间:2015-10-07 18:45:55      阅读:168      评论:0      收藏:0      [点我收藏+]

标签:

http://www.cnblogs.com/freeliver54/p/3747836.html

本文转自:http://stackoverflow.com/questions/11767911/mvc-httppost-httpget-for-action

Controller:

技术分享
[HttpGet]
public ActionResult MyMethod()
{
    return MyMethodHandler();
}

[HttpPost]
[ActionName("MyMethod")]
public ActionResult MyMethodPost()
{
    return MyMethodHandler();
}

private ActionResult MyMethodHandler()
{
    // handle the get or post request
    return View("MyMethod");
}
技术分享

 

View:

查询调用Get

<%Html.BeginForm("ActionName", "ControllerName", FormMethod.Get);%>

<% Html.Submit("BtnSearchText","btnSearch"); %>

<%Html.EndForm();%>

 

保存使用Post

<%Html.BeginForm("ActionName", "ControllerName", FormMethod.Post);%>

<% Html.Submit("BtnSaveText","btnSave"); %>

<%Html.EndForm();%>

.net mvc 一个Action的 HttpGet 和 HttpPost

标签:

原文地址:http://www.cnblogs.com/zkwarrior/p/4859068.html

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