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

.net mvc 一个Action的 HttpGet 和 HttpPost

时间:2014-05-26 07:11:19      阅读:299      评论:0      收藏:0      [点我收藏+]

标签:style   class   c   blog   code   java   

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

Controller:

bubuko.com,布布扣
[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");
}
bubuko.com,布布扣

 

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,布布扣,bubuko.com

.net mvc 一个Action的 HttpGet 和 HttpPost

标签:style   class   c   blog   code   java   

原文地址:http://www.cnblogs.com/freeliver54/p/3747836.html

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