asp.net

位置:IT落伍者 >> asp.net >> 浏览文章

Asp.net获取当前目录的方法小结


发布日期:2023年12月14日
 
Asp.net获取当前目录的方法小结
有时候可能出现找不到类的情况请引用SystemWebdll

方法一

string sPath = SystemIOPathGetDirectoryName(PageRequestPhysicalPath)

方法二

string sPath = SystemWebHttpContextCurrentRequestMapPath("/")

方法三
string sPath = PageServerMapPath("/");

我推荐使用第二种

上一篇:ASP.NET中用js取CheckBoxList中值的方法实例

下一篇:ASP.NET中Control基类清理页面状态