asp.netasp.net-mvcapp-themes

ASP.NET MVC - Any reason to use App_Themes?


Is there any advantage to ASP.NET's App_Themes folder that could be taken advantage of in ASP.NET MVC, or is using them from the Content folder as normal the best way to handle resources like images, stylesheets, etc.

Does the fact that they're in the App_Themes folder add anything special to them?

Thanks,

James


Solution

  • App_Themes is for regular ASP.NET, not for MVC. The Themes system is built on top of ASP.NET's event model, which is not used in MVC.