I have an ASP .NET website that uses cookieless sessions. When the initial request is made to the site using a url such as:
http://localhost/site
IE just displays the standard "Internet Explorer cannot display the webpage" message. Firefox is a bit more helpful and displays the following message:
"Redirection limit for this URL exceed...
            
           
          
            
            I am trying to force a page to be run under SSL, so I have implemented the following on page_load:
if (!Request.IsLocal && !Request.IsSecureConnection)
        {
            Response.Redirect(Helper.GetInstance().SSLBaseURL() + ScriptName());
        }
For some reason this is ending up in a loop.  Earlier today, I checked Request.Uri....
            
           
          
            
            Hi all,
I have a bunch of programs written in ASP.NET 3.5 and 4. I can load them fine (I'm in England) and so can my England based colleagues. My American colleagues however are suffering redirect loops when trying to load any of the apps. I have tried myself using Hide My Ass and can consistently recreate this issue.
I'm stumped. What...
            
           
          
            
            Hi everyone,
I've got a project where we're re-building a site for a client, the new site is using umbraco on the .net platform. the old site was cold fusion.
Umbraco utilises the urlrewriting.net library so I created all the 301 recirect rules for the old cold fusions urls but this one is causing an infinite loop.
    <add name="r66" ...