vote up 3 vote down star
2

Like the question says, if I have a request for a page on my site like this

http://somename.something.here/Dada.aspx

to something like this

https://somename.something.here/Dada.aspx

flag

5 Answers

vote up 7 vote down check

I prefer to (a) not redirect local connections (to ease development under VS), and (b) use a UriBuilder instead of a string.Replace as it's a bit more exact.

if (!Request.IsLocal && !Request.IsSecureConnection) {
    var ub = new UriBuilder(Request.Url);
    ub.Scheme = Uri.UriSchemeHttps;
    ub.Port = -1; // use default port for scheme
    Response.Redirect(ub.Uri.ToString(), true);
    return;
}
link|flag
Thanks create a base page with that in it and changed the inheritence throughout the project, Thanks man – CheGueVerra Dec 18 '08 at 15:05
One problem with this is that you are only going to be securing ASP.NET pages. – BobbyShaftoe Dec 18 '08 at 15:10
For now, it's the only problem I have to deal with, but thanks for the notification on that. – CheGueVerra Dec 18 '08 at 15:21
How did you handle flipping visitors back to http for pages that didn't require https? – Dscoduc Feb 7 at 0:12
vote up 1 vote down

You tagged ASP.NET so I assume you use IIS. Create a file in your Web Root of your web site, call it SSL_Redirect.htm or something like that. Put this Javascript in there:

<Script language="JavaScript"> 
<!-- begin hide 

function goElseWhere() 
{ 

var oldURL = window.location.hostname + window.location.pathname; 


var newURL = "https://" + oldURL; 

query = '' + window.location; 
position = query.indexOf('?'); 
if (position > -1) 
{ 
query = query.substring(position + 1); 
newURL = newURL + "?" + query; 
} 


window.location = newURL; 

} 
goElseWhere(); 

// end hide --> 
</script>

Now, go to the properties of your Web Site. Go to the Customer Errors Tab, look for the 403.4 error, edit it. Change it to use a URL of /SSL_Redirect.htm (or whatever you named it). Now, in the IIS Admin, find that file, SSL_Redirect.htm, right click, go to properties. Go to File Security and uncheck Require SSL for that particular file.

You're done.

link|flag
vote up 1 vote down

I think it is as simple as witing

Response.Redirect("https://somename.something.here/Dada.aspx");
link|flag
vote up 0 vote down

I remember dealing with the same issues a while back. I wanted to make sure certain pages were over https, while the rest were using http. I also wanted to be sure that once the visitor left the secure page for pages that didn't need to be secure they would flip back to http. To accomplish this I explored two options:

The first option was that I could use the free .NET URLRewriter project to rewrite specific pages outlined in the configuration file:

# HTTP REQUIRED PAGES
RewriteCond %{HTTPS} =on
RewriteCond %{REQUEST_URI} !(/login\.aspx|/securepage\.aspx).*$ [NC]
RewriteCond %{HTTP_HOST} (.+)
RewriteRule ^(.*)$ http://%3$1 [R=301,L]

# HTTPS REQUIRED PAGES
RewriteCond %{HTTPS} =off
RewriteCond %{REQUEST_URI} (/login\.aspx|/securepage\.aspx).*$ [NC]
RewriteCond %{HTTP_HOST} (.+)
RewriteRule ^(.*)$ https://%3$1 [R=301,L]

Using this configuration I can ensure only the two pages are secure, while the rest will be insecure. I had fine results with this option.

The second option came after I located a complete solution dedicated to handling this very problem. The company is SanibelLogic and they have a product called SSLRedirect. This HTTPModule based solution does exactly what I needed. It does cost a little money but if you want something simple to implement and manage this might fit the bill. They even offer the source code if you want to edit anything about it...

I used both options for many months but ended up using the SSLRedirect product for its simplicity.

I hope this helps...

link|flag
vote up -1 vote down

Send a Redirect Header (302) to the browser.

Example:

Response.Redirect("WebForm2.aspx")

Article on the difference between Server.Transfer and Response.Redirect

link|flag
You need to do a bit more than that. You have to use a custom error for 403.4. – BobbyShaftoe Dec 18 '08 at 14:28
As well, if you just do that, you will lose the Query string and so forth. – BobbyShaftoe Dec 18 '08 at 14:30
The answer was meant to point the questioner in the right direction, not be a one-stop copy, paste, and compile solution. – Bork Blatt Dec 18 '08 at 14:52

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.