[HttpPost]
[MultipleButton(Name = "action", Arg= "signin")]
public ActionResult signin()
{
return RedirectToAction("Index", "signin");
}
[HttpPost]
[MultipleButton(Name = "action", Arg= "Signup")]
public ActionResult Signup()
{
return RedirectToAction("Index", "Signup");
}
[HttpPost]
[MultipleButton(Name = "action", Arg= "Cancel")]
public ActionResult Cancel()
{
return RedirectToAction("Index", "Home");
}
Custom ActionNameSelectorAttribute :
Here we going to implement a custom ActionMethodSelectorAttribute to check which button submitted the form.This contains values posted in the form in a NameValueCollection object.
[AttributeUsage(AttributeTargets.Method, AllowMultiple = false, Inherited = true)]
public class MultipleButtonAttribute : ActionNameSelectorAttribute
{
public string Name{get;set;}
public string Arg{get;set;}
public override bool IsValidName(ControllerContext controllerContext,
string actionName, MethodInfo methodInfo)
{
bool isValidName = false;
string keyValue = string.Format("{0}:{1}", Name, Arg);
var value = controllerContext.Controller.ValueProvider.GetValue(keyValue);
if (value != null)
{
controllerContext.Controller.ControllerContext.RouteData.Values[Name] = value;
isValidName = true;
}
return isValidName;
}
}
Note : While clicking the button, MultipleButtonAttribute method will execute first to know which action Mthod to call
OUTPUT :


Hey very nice blog!