views:

3974

answers:

7

I really need some ASP MVC CTP 4 hosting. Is anyone doing this? I can't believe there is no-one willing to take my money just because it's in beta.

This is a customer requirement, so why is each host I ask just saying 'we can't do that'?

+17  A: 

You don't need to install the MVC Libraries into the GAC, so any .NET 3.5 Host can support ASP.NET MVC.

The only trick is that your routes will have to have .aspx in them to invoke ASP.NET, since they probably won't setup the HTTPHandler in IIS for you.

EDIT:

This link shows how to set it up on any shared host:

http://forums.asp.net/p/1239943/2294813.aspx

FlySwat
+1  A: 

@Jonathan - Ok sounds promising. Where in the route? At the controller like this?

routes.MapRoute(
            "Default", // Route name
            "{controller}.aspx/{action}/{id}", 
            new {controller = "Home", action = "Index", id = ""} 
            );

EDIT - Ok, yes like that. Thanks for the pointer Jonathan.

IainMH
A: 

I know you can do it on Mosso

Ricky
+2  A: 

Many hosts will also set up a wildcard route to ASP.NET for you so you won't need the .aspx suffix.

Brad Wilson
+1  A: 

I have a freehosting on qsh.eu and I use ASP.NET MVC on my test apps, without any intervention of my hoster.

Dragan Panjkov
+5  A: 

There're 2 web hostings you can consider -

Arvixe and webhost4life!

With my experience, Arvixe is a cheaper asp.net web hosting and webhost4life is better for the client service support.

MARK
Your link needs some fixin
Joe Philllips
Webhost4life is crap for support! I am a customer. Keep away from them! http://www.lyndonreid.com/webhost4life-sucks and: http://webhost4lifecustomers.ning.com/
cottsak
I've been with WH4L for many years and their tech support has always been excellent, for both Windows and Linux hosting. YMMV I guess.
kprobst
+3  A: 

Webhost4life is terrible, they used to be great but recently switched over to some new platform and basically things have gone downhill fast. I am planning to move away from them as soon as I can.

I will be moving to http://www.arvixe.com/

UPDATE: I have moved to arvixe.com and so-far am very pleased. I did manage to get a response from webhost4life and they flat-out refused to setup the .NET wildcard mapping stating that *.mvc or *.aspx extensions would need to be used on their servers. Hope that helps, -fs

Francis Shanahan