首页 > Web开发 > 详细

.net mvc 一个Action的 HttpGet 和 HttpPost

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

本文转自: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

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

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!