NoviceToDotNet
NoviceToDotNet

Reputation: 10805

What is the purpose of shared folder in asp.net MVC application?

I want to know what is the shared folder for in MVC, does it to keep any special views? Does it effect any content and codes in whole project.

Upvotes: 3

Views: 4265

Answers (1)

Jon Douglas
Jon Douglas

Reputation: 13176

This is merely a convention to say that these views will be "Shared" with other portions of the project(Controllers/Other Views/etc). You can put these views anywhere you would like as long as you reference them correctly.

Upvotes: 4

Related Questions