I have the following Url.Action :
@Url.Action("ActionName", "ControllerName", new { area = "AreaName" })
I also need to send some objects to this action
through this Url.Action
, how could I do this?
I have the following Url.Action :
@Url.Action("ActionName", "ControllerName", new { area = "AreaName" })
I also need to send some objects to this action
through this Url.Action
, how could I do this?
It was right to send with the router, it looks like this:
@Url.Action("ActionName", "ControllerName", new { area = "AreaName", parametroName = "parametroValue" })