I am using MVC 3, i am passing some url in the string type property, for this i have used
var uri = new UrlHelper().Action("ActionName", "ControllerName");
But it is giving error. which is
{"Value cannot be null.\r\nParameter name: routeCollection"}
i know .Action(actionName, controllerName, routeValues, scheme); has four parameters but i only want to pass two, what will be the default value for it??