Sun_Blue_Sky

菩提本无树,明镜亦非台,本来无一物,何处惹尘埃 寻求内心的平静
  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

取得根URL

Posted on 2010-03-12 09:19  Sun_Blue_Sky  阅读(92)  评论(0)    收藏  举报
代码
public static string GetUrlRoot()
        {
            
string strTemp=""
            
if(System.Web.HttpContext.Current.Request.ServerVariables["HTTPS"== "off"
            { 
                strTemp 
= "http://"
            } 
            
else 
            { 
                strTemp 
= "https://"
            } 

            strTemp 
= strTemp + System.Web.HttpContext.Current.Request.ServerVariables["SERVER_NAME"]; 

            
if(System.Web.HttpContext.Current.Request.ServerVariables["SERVER_PORT"!= "80"
            { 
                strTemp 
= strTemp + ":" + System.Web.HttpContext.Current.Request.ServerVariables["SERVER_PORT"]; 
            } 
            
return strTemp;
        }