ASP3.0 기초 강의실

시삽: 레드플러스 님 
게시판 이동:
 제목 : 10.8.서버환경변수모두출력.asp
글번호: 126
작성자: 레드플러스
작성일: 2004/04/12 오전 12:04:00
조회수: 5845
파일: 10.8.gif (18 KB) / 전송수: 2239
10.8.gif
<html>
<head>
<title>시스템 정보</title>
<meta http-equiv="Content-Type" content="text/html; charset=euc-kr">
<style type="text/css">
    td {font-size:8pt;font-family:verdana;}
</style>
</head>
<body>
    <table border=1>
        <%For Each key in Request.ServerVariables%>
        <tr>
            <td><%=key%></td>
            <td>
                <%
                If Request.ServerVariables(key) = "" Then
                    Response.Write "&nbsp;"
                Else
                    Response.Write Request.ServerVariables(key)
                End If
                    Response.Write    "</td>"
                %>
        </tr>
        <%Next%>
    </table>
</body>
</html>
 
이전 글   다음 글 삭제 수정 답변 글쓰기 리스트

(댓글을 남기려면 로그인이 필요합니다.)

관련 아티클 리스트
  제       목 파일 작성자 작성일 조회
이전글 11. Server객체 - 관리자 2000-12-20 5377
  10. Response객체와 Request객체 - 관리자 2000-12-20 6409
  10.1.Write메서드(문자열출력).asp 10.1.gif(15 KB) 레드플러스 2004-04-03 6915
  10.2.Buffer프로퍼티(버퍼링사용).asp 10.2.gif(21 KB) 레드플러스 2004-04-03 4816
  10.3.Redirect메서드(페이지이동).asp 10.3.gif(22 KB) 레드플러스 2004-04-03 6856
  10.4.Expires프로퍼티(캐시지우기).asp 10.4.gif(17 KB) 레드플러스 2004-04-03 5130
  10.5.Status속성(로그인창띄우기).asp 10.5.gif(25 KB) 레드플러스 2004-04-03 5267
  Response객체 - 레드플러스 2004-04-11 4630
  Request객체 - 레드플러스 2004-04-11 4488
  10.6.ServerVariables컬렉션(IP주소).asp 10.6.gif(15 KB) 레드플러스 2004-04-11 5180
  10.7.ServerVariables(IP및브라우저정보).asp : 브라우저 정보 획... 10.7.gif(21 KB) 레드플러스 2004-04-11 6480
현재글 10.8.서버환경변수모두출력.asp 10.8.gif(18 KB) 레드플러스 2004-04-12 5845
  10.9.전송및받기.asp : 아이디 및 패스워드 전송 및 받기 10.9.gif(15 KB) 레드플러스 2004-04-12 5042
다음글 09. 배열 - 관리자 2000-12-17 5354
 
손님 사용자 Anonymous (손님)
로그인 Home