ashes999
ashes999

Reputation: 10163

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

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?

Upvotes: 6

Views: 2049

Answers (1)

Graham Clark
Graham Clark

Reputation: 12966

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).

Upvotes: 8

Related Questions