【MVC5】画面多按钮提交

画面上有个多个按钮时,如何绑定到各自的Action上?

1.追加如下MultipleButtonAttribute

 1 using System;
 2 using System.Reflection;
 3 using System.Web.Mvc;
 4 
 5 namespace DailyReportSystem.Attribute
 6 {
 7     [AttributeUsage(AttributeTargets.Method, AllowMultiple = false, Inherited = true)]
 8     public class MultipleButtonAttribute : ActionNameSelectorAttribute
 9     {
10         public string Name { get; set; }
11         public string Argument { get; set; }
12 
13         public override bool IsValidName(ControllerContext controllerContext, string actionName, MethodInfo methodInfo)
14         {
15             var isValidName = false;
16             var keyValue = string.Format("{0}:{1}", Name, Argument);
17             var value = controllerContext.Controller.ValueProvider.GetValue(keyValue);
18 
19             if (value != null)
20             {
21                 controllerContext.Controller.ControllerContext.RouteData.Values[Name] = Argument;
22                 isValidName = true;
23             }
24 
25             return isValidName;
26         }
27     }
28 }

2.Razor(给按钮追加name属性,值的格式为【{Name}:{Argument}】)

<form action="" method="post">
 <input type="submit" value="Save" name="action:Save" />
 <input type="submit" value="Cancel" name="action:Cancel" />
</form>

3.Controller(参数Name和Argument对应按钮的name属性值)

[HttpPost]
[MultipleButton(Name = "action", Argument = "Save")]
public ActionResult Save(MessageModel mm) { ... }

[HttpPost]
[MultipleButton(Name = "action", Argument = "Cancel")]
public ActionResult Cancel(MessageModel mm) { ... }

 原文地址:http://stackoverflow.com/questions/442704/how-do-you-handle-multiple-submit-buttons-in-asp-net-mvc-framework

 已添加到【MVC5】ASP.NET MVC 项目笔记汇总

转载于:https://www.cnblogs.com/Ryukaka/p/4795511.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值