[求助]原样输出ASP代码,该怎么做?
我要在浏览器中,原样输出以下内容,该怎么做啊?谢谢!!
<% For Each name In Request.ServerVariables %>
<%=name %> [ < %=Request.ServerVariables(name) %> ] < P>
<% Next %>
我要在浏览器中,原样输出以下内容,该怎么做啊?谢谢!!
<% For Each name In Request.ServerVariables %>
<%=name %> [ < %=Request.ServerVariables(name) %> ] < P>
<% Next %>
原样输出这段代码呢?有哪位高手知道啊?谢谢啦
<html>
<head>
<title>计数器测试版</title>
</head>
<body>
<p align="center">您是本网站的第
<font color="blue">
<%
Application("Num")=Application("Num")+1
Response.Write Application("Num")
%>
</font>
位访问者</p>
</body>
</html>
<%=name %> [ < %=Request.ServerVariables(name) %> ] < P>
<% Next %>
"