14 questions
0
votes
1
answer
370
views
ASP.NET MVC RequireHttps Page Not Found
I am trying to add the RequireHttps tag to a controller action but when I try to navigate to it I get a page not found error when I try:
https://localhost/MVCDemo3_4/Home/Index2
or
http://localhost/...
1
vote
2
answers
494
views
Requirehttps for DEVELOPMENT and LIVE websites
I have some ASP .NET MVC4 website which I have to put first to DEVELOPMENT place to test. And development website doesn't have SSL but the LIVE has it.
Well. I have to use [Requirehttps] inside of ...
0
votes
1
answer
170
views
MVC3 RequireHTTPS Simple
Im running an MVC3 app within an IIS7.5 instance on a winsvr2008 R2 box. Now if i set RequireHttps either globally or on each class, my url never gets rewritten at all, in fact it changes nothing? Im ...
7
votes
2
answers
8k
views
ASP MVC 3 RequireHttps attribute change all links to https
I have an ASP MVC 3 website that has a Feedback form and should require SSL.
Now, I have an action called Feedback inside a controller called 'ContactUs' that is responsible for viewing and ...
9
votes
1
answer
721
views
Why does AppHarbor + RequireHttpsAttribute equal frowny-face :(
First deployment to AppHarbor today. After some initial work getting it to build, I successfully deployed an MVC3 app.
There is a problem with using the RequireHttpsAttribute though. I noticed at ...
14
votes
5
answers
30k
views
MVC RequireHttps and redirect if not https
I've read thru many of the questions on ASP.NET MVC [RequireHttps] - but can't find the answer to this question:
How do you make the [RequireHttps] attribute switch the url to https if it was not ...
0
votes
1
answer
316
views
ASP.NET MVC RequireHttps not available
I'm using System.Web.MVC v2.0.50727 and can't seem to apply the RequireHttpsAttribute. I can use [OutputCache(...)] for instance, but if I try to use [RequireHttps] I get a missing assembly error.
...