tags:

views:

25

answers:

2

I know I have seen a lot of posts on a 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 keep 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.

Any ideas?

Thanks

+2  A: 

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.

Darin Dimitrov
+4  A: 

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

Tahbaza