This ActionLink works fine when it is outside of an area, but as soon as I moved it into one it started appending the name of the controller to the url:TrainingandDevelopment/MakeCall
It should just be displaying the paritial view that it is calling.
Ajax.ActionLink("Click to Get HRMS Folder", "MakeCall", new { folderName = "HRMS" }, new AjaxOptions()
{
UpdateTargetId = "placeHolder",
InsertionMode = InsertionMode.Replace,
LoadingElementId = "indicator",
HttpMethod = "POST",
})