Hello,
From my main MVC application, i am trying to call a controller action that is located in a second MVC project. I can call the controller action, but i am getting the error:
The view 'myLogin.cshtml' or its master was not found or no view engine supports the searched locations. The following locations were searched:
~/Views/Account/myLogin.cshtml.aspx
~/Views/Account/myLogin.cshtml.ascx
~/Views/Shared/myLogin.cshtml.aspx
~/Views/Shared/myLogin.cshtml.ascx
~/Views/Account/myLogin.cshtml.cshtml
~/Views/Account/myLogin.cshtml.vbhtml
~/Views/Shared/myLogin.cshtml.cshtml
~/Views/Shared/myLogin.cshtml.vbhtml
It seems that the engine looks for the view in my main (the caller) project. How can i let it look in the folders of the second (the callee) project?
Thanks in advance