ASP의 서버변수 Request.ServerVariables 컬렉션 예제 > 기술자료 | 해피정닷컴

ASP의 서버변수 Request.ServerVariables 컬렉션 예제 > 기술자료

본문 바로가기

사이트 내 전체검색

ASP의 서버변수 Request.ServerVariables 컬렉션 예제 > 기술자료

ClassicASP ASP의 서버변수 Request.ServerVariables 컬렉션 예제

페이지 정보


본문

ASP의 서버변수는 꽤나 다양하다.


## HTTP전체 문자열
all_http = request.ServerVariables("all_http")

- all_raw
- appl_md_path
- auth_password
- auth_type
- auth_user
- cert_cookie
- cert_flags
- cert_issuer
- cert_keysize
- cert_secretkeysize
- cert_serialnumber
- cert_server_issuer
- cert_subject

## HTTP 요청을 한 클라이언트에서 입력한 문자열의 총길이
content_length = Request.ServerVariables("CONTENT_LENGTH")

- content_type
- gateway_interface
- https
- http_accept
- http_accept_encoding
- http_accept_language
- http_cookie
- http_connection
- https_keysize
- https_secretkeysize
- https_server_issuer
- https_server_subject

## 홈페이지 주소중 ***.com 등을 제외한 경로
http_url = request.servervariables("http_url")
예시:  https://www.happyjung.com/123.asp?v=1&v=2
결과:  /123.asp?v=1&v=2

## HTTP 요청을 받은 서버 호스트 명( 도메인 명 )
http_host = Request.ServerVariables("http_host")

## 이전 페이지
http_referer = Request.ServerVariables("http_referer")

- http_user_agent
- instance_id
- instance_meta_path

## HTTP 요청을 받은 서버 호스트의 (아이피)
local_addr = Request.ServerVariables("local_addr")

## 사용자 LogOn 계정이름
logon_user = Request.ServerVariables("logon_user")

- path_info
- path_translated
- query_string

## 클라이언트 ip 주소 알아내기
remote_addr = Request.ServerVariables("remote_addr")

## HTTP 요청을 한 클라이언트 호스트 명 - 정보가 없으면 REMOTE_ADDR과 같음
remote_host = Request.ServerVariables("REMOTE_HOST")

- remote_user
- request_method
- script_name

## server_name
server_name = request.ServerVariables("server_name")
예시:  https://www.happyjung.com/123.asp?v=1&v=2
결과:  www.happyjung.com

'HTTP 요청과 응답에 사용되는 PORT ( 웹서버의 기본포트는 80 )
server_port = Request.ServerVariables("SERVER_PORT")

- server_port_secure

## HTTP 요청과 응답에 사용되는 프로토콜 버전
server_protocol = Request.serverVariables("SERVER_PROTOCOL")

## HTTP 요청을 받은 서버의 웹서버 버전 
server_software = Request.serverVariables("SERVER_SOFTWARE")

## 현재 페이지 이름
url = Request.ServerVariables("url")
예시:  https://www.happyjung.com/123.asp?v=1&v=2
결과:  /123.asp


============================


## 전체 서버변수를 뿌리는 예제
<html>
<body>
    <table >
    <% For Each key in Request.ServerVariables %>
        <tr>
            <td><%=key %></td>
            <td>
            <%
                if Request.ServerVariables(key) = "" Then
                    Response.Write " "
                else
                    Response.Write Request.ServerVariables(key)
                end if
            %>
            </td>
        </tr>
    <% next %>
    </table>
</body>
</html>


## 언어선택후 자동로딩 예제
https://www.happyjung.com/lecture/2683  로 이동


참고사자료
http://itisfun.tistory.com/48
http://www.webmadang.net/develop/develop.do?action=read&boardid=1001&page=4&seq=38

댓글목록

등록된 댓글이 없습니다.


Total 2,641건 112 페이지
  • RSS
기술자료 목록
421
그누보드   10716  2008-01-30 00:11  
420
그누보드   20438  2008-01-23 00:29  
419
PHP   12925  2008-01-22 17:03  
418
영카트   13374  2008-01-18 14:24  
417
ClassicASP   10715  2008-01-10 08:48  
416
PHP   23772  2008-01-10 01:01 ~ 2008-02-10 00:00  
415
영카트   12305  2008-01-07 22:48  
414
PHP   14769  2008-01-07 22:40  
413
PHP   16586  2008-01-04 00:15 ~ 2022-11-18 10:28  
412
그누보드   22831  2008-01-02 19:36  
열람
ClassicASP   27113  2007-12-29 11:18  
410
Linux   12135  2007-12-28 22:02  
409
ClassicASP   10972  2007-12-28 14:42 ~ 2008-10-17 00:00  
408
그누보드   15226  2007-12-21 18:53 ~ 2020-11-12 14:43  
407
영카트   13600  2007-12-17 19:29  
406
etc쇼핑몰   22112  2007-12-21 11:54 ~ 2018-04-20 14:43  
405
일반   13820  2007-12-15 13:43  
404
JavaScript   16660  2007-12-13 10:32 ~ 2013-09-02 00:00  
403
JavaScript   13726  2007-12-13 10:27  
402
MySQL   54320  2007-12-01 19:26 ~ 2017-10-23 16:45  

검색

해피정닷컴 정보

회사소개 회사연혁 협력사 오시는길 서비스 이용약관 개인정보 처리방침

회사명: 해피정닷컴   대표: 정창용   전화: 070-7600-3500   팩스: 042-670-8272
주소: (34368) 대전시 대덕구 대화로 160 대전산업용재유통단지 1동 222호
개인정보보호책임자: 정창용   사업자번호: 119-05-36414
통신판매업신고: 제2024-대전대덕-0405호 [사업자등록확인]  
Copyright 2001~2024 해피정닷컴. All Rights Reserved.