ASP 서버변수 값들 확인 스크립트
본문
<%@ language = JavaScript %>
<HTML>
<HEAD>
<TITLE>ASP 2.0 Demo</TITLE>
</HEAD>
<BODY>
<table width="100% align="center" border="1" style="font-size:9pt">
<%
items = new Enumerator(Request.ServerVariables)
while (!items.atEnd()) {
i = items.item();
Response.Write ("<tr onMouseOver=this.style.backgroundColor='f4f4f4' onMouseOut=this.style.backgroundColor='white'>");
Response.Write ("<td>" +i+ "</td>");
Response.Write ("<td>" +Request.ServerVariables(i)+ "</td>");
Response.Write ("</tr>");
items.moveNext();
}
%>
</table>
</BODY>
</HTML>
<HTML>
<HEAD>
<TITLE>ASP 2.0 Demo</TITLE>
</HEAD>
<BODY>
<table width="100% align="center" border="1" style="font-size:9pt">
<%
items = new Enumerator(Request.ServerVariables)
while (!items.atEnd()) {
i = items.item();
Response.Write ("<tr onMouseOver=this.style.backgroundColor='f4f4f4' onMouseOut=this.style.backgroundColor='white'>");
Response.Write ("<td>" +i+ "</td>");
Response.Write ("<td>" +Request.ServerVariables(i)+ "</td>");
Response.Write ("</tr>");
items.moveNext();
}
%>
</table>
</BODY>
</HTML>
[이 게시물은 듀라님에 의해 2015-04-03 10:08:13 워드프레스에서 이동 됨]
[이 게시물은 듀라님에 의해 2015-04-03 10:27:24 Public에서 이동 됨]
[이 게시물은 듀라님에 의해 2015-04-03 10:33:53 팁과강좌에서 이동 됨]
[이 게시물은 최고관리자님에 의해 2017-06-10 14:24:30 ASP에서 이동 됨]
0
0
페이지 정보
l2j (121.♡.101.20) 작성일07-05-02 14:54 조회1,638회 댓글0건관련링크
댓글목록
등록된 댓글이 없습니다.