Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

ASP.NET MVC's Content/Themes/base Directory

Tags:

asp.net-mvc

What's the purpose of the Content/Themes/base directory in an ASP.NET MVC application? I see that it has some images (which as far as I can tell, are not used); and a bunch of jQuery CSS files.

What are these files for? Are they used by default in a new ASP.NET MVC application?

like image 636
ashes999 Avatar asked May 21 '11 09:05

ashes999


1 Answers

jQuery UI is included with new ASP.NET MVC projects; these files are used by all the different widgets. If you're not going to use jQuery UI, or if you want a custom download package (available from their website), you can delete all of these files (and the references to them in the layout/master page file).

like image 75
Graham Clark Avatar answered Sep 28 '22 09:09

Graham Clark