I have a controller which contains multiple Http Post action methods invoked using multiple submit buttons. Generally, a page supports single submit button and that button can access the corresponding Action method referred in the Html.BeginForm ("ActionName", "ControllerName").
In MVC, i used to create Custom ActionNameSelectorAttribute to support multiple submit buttons. But with EPI server routing, thats not working and I found its mainly because EPI routing difference.
Hi,
I have a controller which contains multiple Http Post action methods invoked using multiple submit buttons. Generally, a page supports single submit button and that button can access the corresponding Action method referred in the Html.BeginForm ("ActionName", "ControllerName").
In MVC, i used to create Custom ActionNameSelectorAttribute to support multiple submit buttons. But with EPI server routing, thats not working and I found its mainly because EPI routing difference.
Is there any solution for this issue?