Hi all,
I am using T4MVC in our ASP.NET MVC Project.
I have a statement like this in my view
<% Html.RenderPartial(MVC.SomeController.Views.PartialViewName); %>
Which was previously like this
<% Html.RenderPartial("../SomeController/PartialViewName"); %>
Previously it was working fine, but after I specified the partial view using T4MVC, its not able to locate that partial view.
Its Just trying to find it in the below paths, which is the default behaviour.
~/Views/SomeController
~/Views/Shared
Is there a way to specify a partial view which is in some other controller's views folder through T4MVC? or Whatever I am doing, is it correct ? What am I missing ?
Thanks