开发者

MVC3 using nHibernate

开发者 https://www.devze.com 2023-04-10 09:41 出处:网络
I have an MVC3 project using nHibernate, Rhino and Castle.I finally got all of the components in place.I think.At least it runs and invokes the IWondsorContain开发者_StackOverflow社区er CreateContaine

I have an MVC3 project using nHibernate, Rhino and Castle. I finally got all of the components in place. I think. At least it runs and invokes the IWondsorContain开发者_StackOverflow社区er CreateContainer() method....after that method, the Application_Start does not fire and I get the message:

Server Error in '/' Application.
--------------------------------------------------------------------------------
The resource cannot be found. 
Description: HTTP 404. The resource you are looking for (or one of its dependencies) could have been removed, had its name changed, or is temporarily unavailable.  Please review the following URL and make sure that it is spelled correctly. 

Requested URL: /Views/Proposal/Index.cshtml

Any ideas? I don't know what to make of this. Thanks


You seem to be requesting a view directly: /Views/Proposal/Index.cshtml. In ASP.NET MVC you do not request a view. You request a controller action. So in your browser the url should be /Proposal/Index or simply / depending on how your routes are configured.

I suspect that you had the focus on this Index.cshtml when you hit F5 in Visual Studio which has this ugly habit of following the url. You could define a start url in the properties of your web project to avoid this behavior.

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号