<body>
路径测试
<p>
<%
dim path_string,path_string1
path_string=server.MapPath("..")
response.Write path_string &"<br>"
path_string1=server.MapPath("../index.asp")
response.Write path_string1

%>

<p>
html编码的测试
<p>
<%
response.Write("<font size=24 color=blue>文本格式设置</font><br>")
response.Write server.htmlencode("<font size=24 color=blue>文本格式设置</font><br>")
%>
url编码测试<p>
<%
response.Write("http://www.sina.com.cn")&"<br>"
response.Write server.URLEncode("http://www.sina.com.cn")
%>
<p>
<%
server.Execute("1.asp")
%>
</body>