프로그래밍/ASP.NET

ASP.NET ServerVariables 전체 출력

Doonee 2013. 8. 20. 16:04
반응형

// ServerVariables 전체출력

foreach (string var in Request.ServerVariables)

{

        Response.Write(var + " : <strong>" + Request[var] + "</strong><hr size=1>");

}

         

// HTTPS로 리다이렉팅 예시

if (Request.ServerVariables["SERVER_PORT_SECURE"] == "0")

{

        string strUrl = string.Empty;

        strUrl = "https://" + Request.ServerVariables["HTTP_HOST"] + "/login.aspx";

        Response.Redirect(strUrl);