In my controller I got action:
[HttpGet] public ActionResult CreateAdmin(object routeValues = null) { //some code return View(); }
You can pass values to a Http Get method like
Html.Action("ActionName","ControllerName",new {para1=value, para2 = value});
and you can have your action defined in the controller like
[HtttpGet] public ActionResult ActionName(Para1Type para1, Para2Type para2) { }