I am wondering if there is a way to store partial views outside of the application's root folder. The advantage being that all applications would be able to use these partials, and there would be a single location to make HTML updates without re-deploying a new .bin to each app.
@Html.Partial("../../../../../../../../PartialTest/PartialTest.cshtml")
This is giving me the error:
Cannot use a leading .. to exit above the top directory.
Is something like this possible?