Reputation: 4202
Ok, possibly a silly question, but when deploying an .NET MVC 4 application using the IIS server, where should indicate the physical path to? The parent directory? The controller directory? The view directory? I keep getting an error saying he resource cannot be found.
Upvotes: 3
Views: 1396
Reputation: 91885
The directory where your application's top-level Web.config
file is. This, if you've got one, is the same folder as where your Global.asax
file is.
Upvotes: 2