Click here to Skip to main content
15,880,796 members
Articles / Web Development / HTML
Tip/Trick

How to put your site into maintainance mode

Rate me:
Please Sign up or sign in to vote.
2.67/5 (3 votes)
29 Nov 2011CPOL 9.1K   2   4
How to put your site into maintainance mode
First of all, create an instance of Uri object, then check if the URL provided matches with the URL you are having, then redirect it to the new URL.

Uri uri = new Uri("http://www.google.co.uk/index.html");
if(uri.Host.ToLower().EndsWith("google.co.uk"))
{
//Do something
response.redirect("www.newsite.com/maintainance.html");
}


Enjoy programming...

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Technical Lead Erls Corporation
India India
I am Dinesh kumar Choudhary by Name, a software Designer and Developer by Work, a Indian Hindu by Religion, Co-Founder of DSFoundation located at http://dsfoundation.wordpress.com by profession, a Loving husband and a Caring Father by Relation.

I have a blog Website at http://dennosecqtinstien.wordpress.com. DSFoundation is the Autonomous body to serve for the management of Local shops located at New Delhi, India. Now a days DSFoundation and its subsidiaries are managed by Erls Corporation, an Another initiative by me and my colleagues, in which i am the another CO-Founder of the Organization. Erls Corporation can be located at http:erlsindia.co.in

Comments and Discussions

 
GeneralReason for my vote of 2 If you have to implement a maintenan... Pin
fjdiewornncalwe5-Dec-11 8:45
professionalfjdiewornncalwe5-Dec-11 8:45 
GeneralSystem.Uri class (http://msdn.microsoft.com/en-us/library/sy... Pin
Denno.Secqtinstien4-Dec-11 19:16
Denno.Secqtinstien4-Dec-11 19:16 
GeneralReason for my vote of 1 totally unscalable Pin
Reiss29-Nov-11 4:47
professionalReiss29-Nov-11 4:47 
Reason for my vote of 1
totally unscalable
GeneralYou haven't told us where should we add this code? Pin
Ankur\m/29-Nov-11 3:17
professionalAnkur\m/29-Nov-11 3:17 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.