温馨提示:代码在线浏览功能只能做为源码浏览参考,不能展示项目的全部,如果想更进一步了解该代码请下载:NETCMSv1.5(Build0509)完整源码版
当前文件路径:NetCMSv15/NetCMS.Content/Common/SystemInfo.cs

1//====================================================== 2
//== (c)2008 aspxcms inc by NeTCMS v1.0 == 3
//== Forum:bbs.aspxcms.com == 4
//== Website:www.aspxcms.com == 5
//====================================================== 6
using System; 7
using System.Collections.Generic; 8
using System.Text; 9
using System.Web; 10
11
namespace NetCMS.Content.Common 12
{ 13
public class SystemInfo 14
{ 15
public static string GetRootURI() 16
{ 17
string AppPath = ""; 18
string UrlAuthority = HttpContext.Current.Request.Url.GetLeftPart(UriPartial.Authority); 19
if (HttpContext.Current.Request.ApplicationPath == "/") 20
//直接安装在 Web 站点 21
AppPath = UrlAuthority; 22
else 23
//安装在虚拟子目录下 24
AppPath = UrlAuthority + HttpContext.Current.Request.ApplicationPath; 25
return AppPath; 26
} 27
} 28
} 29





}
}