How do I go about using HTTPS for some of the pages in my ASP.NET MVC based site?

Steve Sanderson has a pretty good tutorial on how to do this in a DRY way on Preview 4 at:

http://blog.codeville.net/2008/08/05/adding-httpsssl-support-to-aspnet-mvc-routing/

Is there a better / updated way with Preview 5?,

link|improve this question

71% accept rate
feedback

9 Answers

up vote 40 down vote accepted

If you are using ASP.NET MVC 2 Preview 2 or higher, you can now simply use:

[RequireHttps]
public ActionResult Login()
{
   return View();
}

Though, the order parameter is worth noting, as mentioned here.

link|improve this answer
10  
You can also do this on the controller level. Better yet, if you want the entire application to be SSL, you can create a base controller, extend it for all controllers, and apply the attribute there. – ashes999 Aug 22 '10 at 16:50
feedback

MVCFutures has a 'RequireSSL' attribute.

(thanks Adam for pointing that out in your updated blogpost)

Just apply it to your action method, with 'Redirect=true' if you want an http:// request to automatically become https:// :

    [RequireSsl(Redirect = true)]

See also: ASP.NET MVC RequireHttps in Production Only

link|improve this answer
Would I have to subclass it in order to handle localhost requests? – Mr Rogers Nov 5 '09 at 2:46
one way is to create a certificate for your local machine and use that. i think to completely disable it for localhost you would indeed need to subclass or duplicate the code. not sure what the recommended approach is – Simon_Weaver Nov 5 '09 at 7:46
Looks like it's sealed so I'd need to dupe the code. Bummer. The certificate for the local machine would only work in IIS though right, not the dev web server. – Mr Rogers Nov 5 '09 at 16:55
@mr rogers - take a look at this : stackoverflow.com/questions/1639707/… – Simon_Weaver Nov 6 '09 at 5:54
Should be TLS, not SSL, no? – Henrik Nov 22 '11 at 14:37
feedback

Here's a recent post from Dan Wahlin on this:

http://weblogs.asp.net/dwahlin/archive/2009/08/25/requiring-ssl-for-asp-net-mvc-controllers.aspx

He uses an ActionFilter Attribute.

link|improve this answer
2  
This looks to be the best way at the moment. – Slack Oct 11 '09 at 4:41
+1 a year later as the isLocal call helped me resolve an issue that was becoming a real pain in the @@@ – kekekela Aug 4 '10 at 14:06
feedback

As Amadiere wrote, [RequireHttps] works great in MVC 2 for entering HTTPS. But if you only want to use HTTPS for some pages as you said, MVC 2 doesn't give you any love - once it switches a user to HTTPS they're stuck there until you manually redirect them.

The approach I used is to use another custom attribute, [ExitHttpsIfNotRequired]. When attached to a controller or action this will redirect to HTTP if:

  1. The request was HTTPS
  2. The [RequireHttps] attribute wasn't applied to the action (or controller)
  3. The request was a GET (redirecting a POST would lead to all sorts of trouble).

It's a bit too big to post here, but you can see the code here plus some additional details.

link|improve this answer
feedback

Some ActionLink extensions: http://www.squaredroot.com/post/2008/06/11/MVC-and-SSL.aspx Or an controller action attribute that redirects to https:// http://forums.asp.net/p/1260198/2358380.aspx#2358380

link|improve this answer
feedback

Here's a blog post by Pablo M. Cibrano from January 2009 that gathers up a couple of techniques including a HttpModule and extension methods.

link|improve this answer
feedback

Here's a blog post by Adam Salvo that uses an ActionFilter.

link|improve this answer
make sure you see the follow post he wrote himself : blog.salvoz.com/2009/04/25/… – Simon_Weaver Jul 12 '09 at 19:49
feedback

This isn't necessarily MVC specific, but this solution does work for both ASP.NET WebForms and MVC:

http://www.codeproject.com/KB/web-security/WebPageSecurity_v2.aspx

I've used this for several years and like the separation of concerns and management via the web.config file.

link|improve this answer
feedback

Check this out if you want to enable SSL for the production server only or you need to turn off the SSL requirement for some of your pages.

http://amilagm.com/2012/04/configure-asp-net-mvc-controller-to-use-ssl-or-not-to-use-ssl/

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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