3

Can I have a Shared Views directory inside a Area where I can put partial views/user controls to be shared amongst the controllers of that specific Area?

neebz
  • 11,465
  • 7
  • 47
  • 64

1 Answers1

3

There is a a Views/Shared/ folder inside each area (or if there is not, you can create one - Areas/%AreaName%/Views/Shared). This works in the same way as the main Views/Shared/ folder, but just for that area.

UpTheCreek
  • 31,444
  • 34
  • 152
  • 221