CodeXchange Friday, March 29, 2024
Home
What's it?
Download
Register
My Snippets
Add Snippet
Search
Faq
Contact Us
Sponsors

Website hosted by


Code Snippet Preview

Review the code snippet before inserting it on your project.

Snippet Metadata
Summary: Switch from HTTP to HTTPS automatically
Language: C#
Author: Zepho Zep
Author snippets RSS:
Culture: en-US
Bytes: 2479
Visual Studio 2005 Snippet:

Snippet Stats
Downloads: 0
Overall rating : 0
Average rating : Snippet rating

Snippet Preview
Code:
    public static class WebSiteUtility
    {
        /// 
        /// This method will examine the current URL for use of https. If https:// isn't present, 
        /// the page will reset itself to the secure url. This does NOT happen for localhost.
        /// 
        /// 
        public static void RedirectSSL(string page)
        {
            //this is the current url 
            string currentUrl = HttpContext.Current.Request.Url.ToString();
            string secureRoot = GetSecureRoot();

            if (!secureRoot.EndsWith("/"))
                secureRoot += "/";
            secureRoot += page;

            //don't redirect if this is localhost
            if (!currentUrl.Contains("localhost"))
            {
                if (!currentUrl.StartsWith("https://"))
                    HttpContext.Current.Response.Redirect(secureRoot);
            }
        }

        /// 
        /// Returns an SSL-enabled URL
        /// 
        /// 
        public static string GetSecureRoot()
        {
            //this is the current url 
            string siteUrl = GetSiteRoot();
            if (!siteUrl.ToLower().StartsWith("https://"))
                siteUrl = siteUrl.Replace("http:", "https:");
            return siteUrl;
        }

        /// 
        /// Returns a regular URL
        /// 
        /// 
        public static string GetNonSSLRoot()
        {
            //this is the current url 
            return GetSiteRoot();
        }

        public static string GetSiteRoot()
        {
            string Port = HttpContext.Current.Request.ServerVariables["SERVER_PORT"];
            if (Port == null || Port == "80" || Port == "443")
                Port = "";
            else
                Port = ":" + Port;

            string Protocol = HttpContext.Current.Request.ServerVariables["SERVER_PORT_SECURE"];
            if (Protocol == null || Protocol == "0")
                Protocol = "http://";
            else
                Protocol = "https://";

            string appPath = HttpContext.Current.Request.ApplicationPath;
            if (appPath == "/")
                appPath = "";

            string sOut = Protocol + HttpContext.Current.Request.ServerVariables["SERVER_NAME"] + Port + appPath;
            return sOut;
        }
    }

Snippet Comments
Comments:
No comments for this snippet

Other snippets that may interest you..
Related Snippets
TDT - GridPage - Page_Init (C#)
CustomValitaor (C#)
(C#)
Get the file extension from a file path or file name (VB.NET)
grab record from db and subtracts it from variable (VB.NET)



Copyright ©2009-2024 CodeXchange. Server version 1.0.3720.32855 Client Version 0.9.0.0

With from Barcelona

Most Helpful members
These are the members who have received the most points for their helpful samples
Zepho Zep
Robert Wagner
Galen Taylor

All time 'Hall of fame'
Formating a file size and adding the B, KB, MB and GB extension appropriately with string.Format (C#)
INI File Access (VB.NET)
Read XML from string into DataSet (C#)
Create Manifest File for your Application (VB.NET)
Round function to avoid banker's rounding (VB.NET)
Get Short and Long Path Names (VB.NET)
Sending Mail through authenticated SMTP server (C#)
One Way Hash for strings (C#)
Formating a file size and adding the B, KB, MB and GB extension appropriately with string.Format (C#)
How do I load an image from a URI address? (VB.NET)
Use our easy to use Visual Studio.NET addin client and start sharing code snippets with the CodeXchange community!
Refreshed: Friday, March 29, 2024