I am using @Html.Partial(\"Index\") to call upon an action called \"Index\" in a controller, which should then return me the \"Index\" view. Unfortunately, it looks like the
Html.Partial will only render a view. If you want to call an action you must use Html.Action, which will execute the action and return the view if any.