最近在调试一个过去的项目,asp写的,提示:必须为 MapPath 方法指定 Path 参数
如下图:
strPath = Server.MapPath("") MapPath的参数不能为空。如果是当前目录,可以用一个小数点表示: strPath = Server.MapPath(".")
网站要目录用斜杠表示:
strPath = Server.MapPath("/")
版权声明:本文为博主原创文章,未经博主允许不得转载。
原文地址:http://blog.csdn.net/testcs_dn/article/details/49427817