在IIS7下运行asp.net MVC应用程序时出错,在本地运行时有效

时间:2011-09-27 09:07:49

标签: asp.net-mvc iis deployment http-status-code-404 ext.net

我正在尝试修改此链接中的Ext.net Mvc示例

http://mvc.ext.net/Account/Login/?ReturnUrl=%2f

当在Visual Studio 2010中本地运行时,项目工作正常,但是当我在IIS 7服务器上部署它时,在我登录到应用程序后,我收到以下错误:

enter image description here

你能帮帮我吗谢谢..

1 个答案:

答案 0 :(得分:1)

请确认您的Global.asax.cs配置正确。

http://code.google.com/p/extnet-mvc/source/browse/trunk/Ext.Net.MVC.Demo/Global.asax.cs

出现404错误,因为/ Account / Login /不存在。你能否确认你的AccountController包含一个“登录”处理程序?

希望这有帮助。