Is it possible to see the MVC View structure from within a browser? As in, is it possible to enable some configuration that will show you the file name of each View and Partial view being rendered from within a browser?
i.e.
If I had Index.cshtml, which then renders two partial views Content1.cshtml and Content2.cshtml, then I would like to see the file names from the F12 browser tool:
//Index.cshtml
<html> .....
....
//Content1.cshtml
<table> ... </table>
//Content2.cshtml
<div> ... </div>
</html>