views:

83

answers:

2

I want to host an asp.net mvc website on godaddy, is economy hosting sufficient? Economy hosting's database is MySQL. Can this be converted to mssql(or perhaps postgresql)?

+1  A: 

asp.net mvc is nothing more than asp.net with a few extra assemblies and configurations. So if the hosting can run regular asp.net then it can run mvc.

the mysql question is separate ... and yes, you can access mysql via any .net code:
http://dev.mysql.com/usingmysql/dotnet/

Joel Martinez
+1  A: 

In Visual Studio you can right-click on any referenced assembly and set "Copy Local" to "true". That way when you publish your site you'll be sure to have everything you need, such as System.Web.Mvc.dll, to run your app.

nbsp