Can ASP check if a secure connection is being used?
Certainly, use Server Variables to check that the port number is 80 (non-secure) and use Redirect <% If Request.ServerVariables("SERVER_PORT")=80 Then Dim strRedirURL strRedirURL = "https://" & Request.ServerVariables("SERVER_NAME") strRedirURL = strRedirURL & "/exchange" Response.Redirect strRedirURL End If %>