I have the following method:
public void Service(int id, string action)
When I click this as Url:
http:
MVC sets my “action” parameter to “service” (method name) no matter what I pass to the parameter.
Is it possible to override this "action" parameter from MVC to set it (via routes or any attributes)?
source
share