動態獲取url

若是一個本地地址:http://localhost:51771/ADMIN/Mobile_Web/index.aspxweb

部署到服務器上就變成了這個地址:http://demo.nowwin.cn/mobile_web/index.aspx。那麼該如何動態獲取呢。服務器

咱們能夠找出規律,無論前面的地址是什麼,文件目錄都在mobile_web/目錄下。則能夠按照下面這種方式url

 int index = Request.Url.ToString().IndexOf("://");
                index = Request.Url.ToString().IndexOf("/", index + 3);
                index = Request.Url.ToString().IndexOf("/", index + 1);
                //index = Request.Url.ToString().IndexOf("/", index + 1);//看你目錄的層次了
                string ff = Request.Url.ToString().Substring(0, index);
                string url = ff + "/index.aspx";部署

 

但願你們給出更好的方法!get

相關文章
相關標籤/搜索