<%@ 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>
'asp' 카테고리의 다른 글
대용량 게시판 만들기 강좌 #1/4 (0) | 2007.05.02 |
---|---|
이전 URL 검사하는 팁 (0) | 2007.05.02 |
동적으로 배열 크기 조절하는 팁 (0) | 2007.05.02 |
쿠키를 이용해서 중복 추천 방지하기 (0) | 2007.05.02 |
글 읽을때 조회수 증가 체크(쿠키 이용) (0) | 2007.05.02 |