Tema: https
Ver Mensaje Individual
  #2 (permalink)  
Antiguo 24/02/2005, 10:28
Avatar de sindestino
sindestino
 
Fecha de Ingreso: noviembre-2003
Ubicación: xxxx xxxx
Mensajes: 270
Antigüedad: 21 años, 4 meses
Puntos: 0
Código:
If Request.ServerVariables("SERVER_PORT") = 80 Then
    Dim Path As String = "https://" & _
    Request.ServerVariables("SERVER_NAME") & _
    Request.ServerVariables("URL")
    If Request.ServerVariables("QUERY_STRING") <> "" Then
        Path &= "?" & Request.ServerVariables("QUERY_STRING")
    End If
    Response.Redirect(Path)
End If
yo pongo ésto en el load de la página, seguramente hay una forma de configurarlo vía servidor web pero desconozco

Saludos