I am trying to modify the Ext.net Mvc sample in this link

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

The project is working perfectly when run locally in Visual Studio 2010 but when I deploy it on an IIS 7 server, after I login to the application I get the following error:

enter image description here

Can you help me please thanks..

link|improve this question
feedback

2 Answers

Please confirm your Global.asax.cs is correctly configured.

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

The 404 error appears be thrown because /Account/Login/ does not exist. Can you confirm your AccountController includes a "Login" handler?

Hope this helps.

link|improve this answer
feedback

Test in on a local Win7 IIS server. That way you can easily set break points and debug. See my blog post http://blogs.msdn.com/b/rickandy/archive/2011/04/22/test-you-asp-net-mvc-or-webforms-application-on-iis-7-in-30-seconds.aspx

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.