读取路径问题
显示的网页是C:\cl\asp\device.asp,在这个网页中要使用一个文本文件是C:\cl\control\name.txt
我是这么写的
file_path = Server.Mappath("../")&"\name.txt" 30行
set fso = server.CreateObject ("scripting.filesystemobject")
Set file_open = fso.OpenTextFile(file_path,1)
然后提示错误
Server.MapPath() 错误 'ASP 0175 : 80004005'
不允许的 Path 字符
/cl/asp/device.asp,行 30
在 MapPath 的 Path 参数中不允许字符 '..'。
操作系统是2003server,使用了IIS,定义了虚拟路径指向C:\cl\default.htm
这是怎么回事呵?还有其他的方法么?谢谢了!