// ServerVariables 전체출력foreach (string var in Request.ServerVariables){ Response.Write(var + " : " + Request[var] + "");} // HTTPS로 리다이렉팅 예시if (Request.ServerVariables["SERVER_PORT_SECURE"] == "0"){ string strUrl = string.Empty; strUrl = "https://" + Request.ServerVariables["HTTP_HOST"] + "/login.aspx"; Response.Redirect(strUrl);}