반응형
// 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);
}
'프로그래밍 > ASP.NET' 카테고리의 다른 글
금일로부터의 영업일 추가하여 산출하는 C# 함수 - 환불예정일 등에 유용한 함수 (0) | 2013.09.13 |
---|---|
Visual Studio 에서 파일 찾기 (0) | 2013.09.06 |
ASP.NET 콘트롤 Vol.12 - 데이터 > GridView (2) | 2010.05.23 |
ASP.NET 콘트롤 Vol.11 - 유효성검사 > ValidationSummary (0) | 2010.05.17 |
ASP.NET 콘트롤 Vol.10 - 유효성검사 > CustomValidator (0) | 2010.05.16 |