John

John

  • NA
  • 928
  • 126.7k

Multiple [HttpPost] in one controller (Web api asp.net)

Jan 6 2017 5:52 AM
Hi, 
 I have an controller in which i have defined multiple [HttpPost] methods and also given the [ActionName] to each method. But its not working even after updating the  
 
Error - No action was found on the controller 'ControllerName' that matches the request.
 
WebApiConfig 
 
public static void Register(HttpConfiguration config)
{
config.Routes.MapHttpRoute(
name: "DefaultApi",
routeTemplate: "api/{controller}/{action}/{id}",
defaults: new { Id = RouteParameter.Optional }
);
config.Formatters.JsonFormatter.SupportedMediaTypes.Add(new MediaTypeHeaderValue("text/html"));
}
 
RouteConfig
 
public static void RegisterRoutes(RouteCollection routes)
{
routes.IgnoreRoute("{resource}.axd/{*pathInfo}");
routes.MapRoute(
name: "Default",
url: "{controller}/{action}/{id}",
defaults: new {id = UrlParameter.Optional }
);
}
 
 
 
 
 

Answers (3)