views:

590

answers:

2

Has anyone successfully been able to deploy ASP.NET website to GoDaddy's free hosting? I am talking about free hosting that comes with a domain package from GoDaddy. The catch of the free hosting is having an annoying Google Ads banner in a frame on top of the page.

I've searched Google, stackoverflow and GoDaddy forums but I can't find anywhere the solution to my problem.

When I upload a ASP.NET website to GoDaddy, it gives me an error - something about TrustLevel. Someone told me that by default asp.net websites have Full Trust Level which GoDaddy doesn't allow. I've even tried changing Trust Level to Medium manually, but with no luck.

What may be the problem?

A: 

I suspect that you are using a 3rd party assembly that requires full trust. As others have mentioned, the error message will tell you specifically which assembly needs full trust once you set customErrors = "on" in your web.config.

nFreeze
+1  A: 
  • Your site is using some dll that need full trust, (is it using some kind of CMS?) GoDaddy don't allow full trust.
  • By the way you can get rid of the ads: http://removegodaddyads.blogspot.com/
  • You can order hosting that allows full trust like this one arvixe
CatchyTech