Malcolm
Malcolm

Reputation: 12864

Setting a under construction page for IIS6

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

Upvotes: 2

Views: 2238

Answers (2)

griegs
griegs

Reputation: 22760

@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.

Upvotes: 1

Darin Dimitrov
Darin Dimitrov

Reputation: 1038880

You could use an app_offline.htm page.

Upvotes: 5

Related Questions