asp.net 获得url途径办法[网站编程]
本文“asp.net 获得url途径办法[网站编程]”是由七道奇为您精心收集,来源于网络转载,文章版权归文章作者所有,本站不对其观点以及内容做任何评价,请读者自行判断,以下是其具体内容:
httpcontext.current.request.physicalpath; // 获得当前页面的完好物理途径.比方 f:xfu.nsqsprojectwebsitedefault.asp教程x
httpcontext.current.request.physicalapplicationpath; // 获得当前途序运行的物理途径比方f:xfu.nsqsprojectwebsite
httpcontext.current.server.mappath(@""); 这个就是在页面中的mappath了.一样用法
httpruntime.appdomainapppath //这个是新发现的,很好用.
还有一个是用来处理在asp.net教程中调用dll文件,而dll文件假如想知道当前的web站点的工作目录可以用system.appdomain.currentdomain.basedirectory
简单三种办法
习asp.net上传文件时,发现有三种办法可以获得当前web程序目录物理途径:
办法一:
string spath = system.io.path.getdirectoryname(page.request.physicalpath)
办法二:
string spath = system.web.httpcontext.current.request.mappath("images/") //("images/")是当前虚拟目录下的肆意目录
办法三:
string spath = page.server.mappath("images/"); //("images/")是当前虚拟目录下的肆意目录另:获得全途径中的文件名
string sfile = system.io.path.getfilename(sfile);
//获得当行进程的完好途径,包含文件名(进程名).
string str = this.gettype().assembly.location;result: x:xxxxxxxxx.exe (.exe文件所在的目录+.exe文件名)
//获得新的 process 组件并将其与当前活动的进程关联的主模块的完好途径,包含文件名(进程名).
string str = system.diagnostics.process.getcurrentprocess().mainmodule.filename;
以上是“asp.net 获得url途径办法[网站编程]”的内容,如果你对以上该文章内容感兴趣,你可以看看七道奇为您推荐以下文章:
本文地址: | 与您的QQ/BBS好友分享! |