MVC3/Razor Error: The view or its master was not found or no view engine supports the searched locations?

Because your AccountController is not inside the Admin area. It's probably in ~/Controllers/AdminController.cs so by convention ASP.NET MVC will look in ~/Views/Shared or ~/Views/Account for its corresponding views.

I had the same problem. What I found was when you send a request for certain action, even if the url is invalid, mvc tries to match the action for you based on the url passed in. If a match is found, (in my case it goes to the correct controller action method), is executed, but because the path you passed in was wrong, it was not able to find the view associated.

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions