views:

51

answers:

2

Hi,

I have an .NET 1.1 web app and I am upgrading to ASP.NET MVC 1.0 app in IIS6.

How do I put up a under construction page so uses see it?

And secondly how can I install the new site and test under this scenario of having an under construction page??

Malcolm

+3  A: 

You could use an app_offline.htm page.

Darin Dimitrov
A: 

@Darin is quite correct but you must make sure it's in the root. The temptation for MVC applications is to place the html file within the Views folder. This won't work.

griegs