How can i alter my views folder structure in MVC? I wanna use nested folder structure.
Views (Folder) - Content (Folder) - Admin (Folder) - Index.aspx
Controller - AdminController.cs
AdminController -> has an action Index which returns the view Index from Views->Content->Admin-Index.aspx
Is this possible and how can i do this?