1 2 3 下一页 Server对象共有四个方法,分别为:MapPath方法、CreateObject方法、HTMLEncode方法和URLEncode方法。 一、Server对象MapPath方法 此方法可以将指定的相对或虚拟路径映射到实际的物理路径。其语法格式如下: Server.MapPaht(路径) 实例一:使用Server对象的MapPath方法转换路径。其代码如下: <html> <head><title>Server对象的MapPaht方法转换路径</title> <style type="text/css"> body,td,th { font-size: 14pt; color: #009999; line-height: 1.5; } body { background-color: #D0DBF2; margin-top: 200px; margin-bottom: 0px; } </style> </head> <body> <p align="center" color="#cc9999"><b>Server对象的MapPaht方法转换路径</b></p> <table align="center" border=0> <tr> <td>服务器的根目录是:</td> <td><% =Server.MapPath("/")%></td></tr> <tr> <td>当前目录的上层目录是:</td> <td><% =Server.MapPath("../") %></td></tr> <tr> <td>当前目录是:</td> <td><%=Server.MapPath("./") %></td></tr> <tr><td>当前文件是:</td> <td><% =Server.MapPath("4-4b.ASP") %></td></tr> </table> </body> </html> 二、Server对象的CreateObject方法 (责任编辑:admin) |