500 Internal Server Error with ASP.NET MVC and Go Daddy
I know I have seen a lot of posts on an internal server error, but I couldn't find one the answered my question. I created an ASP.NET MVC application. It works fine when I run locally, but when I deploy it I kee开发者_开发知识库p getting an internal server error. I called Go Daddy and they said it must be something in my code. I know I changed the domain name from when I first set up the website, I don't know if that would change anything.
Try deploying System.Web.Mvc, System.Web.Routing and System.Web.Abstractions with your app (if you aren't already).
http://msdn.microsoft.com/en-us/library/dd410407(VS.90).aspx
There's an infinity of possible reasons as to why you might get this error. You might try to log the error message in the Application_Error
method in order to gather more information. The server's event log might also contain useful information.
精彩评论