I have some partial views and corresponding action methods in a controller. I call them using Html.Action("PartialView")
helper in some Views. This works fine.
However when i type the url of the action of the partial view into the address bar of my browser, controller sends me the partial view back alone(without any wrapping view or layout). This seems weird. I want my controller to redirect request of actions returning partial view to index action but not Html.Action()
helpers
How can i do that?