Is there a way to set convention when returning a partial view? For example: I have the following:
HomeController ---> Home(action Method) --> _Home.ascx (partial view)
AboutController ---> About(action Method) --> _About.ascx (partial view)
I'm currently passing the partial view name explicitly to the PartialView helper(ie return PartialView("_home");)
note: without using T4MVC.
Thanks