오늘은 디버깅할 때나 현재 페이지 url 알고자 할 때 많이 사용하는 ServerVariables 의 인자들에 대해 몇가지 설명하고자 합니다. 많이 알고는 있는 정보지만 한번 모아보았습니다. * 소스코드 ' 현재 url의 서버상의 path 정보 serverMapPath = Server.MapPath(".") ' 현재 url의 서버상의 path 정보 - 가상path의 경우 실제 있는 path을 알고자 때 사용 physicalPath = Request.ServerVariables("appl_physical_Path") ' ?? 잘 기억이~ filePath = Request.ServerVariables("path_translated") ' 도메인 serverName = Request.ServerVariable..