[NET]關於在ASP.NET中實體路徑和虛擬路徑的取得

來源:互聯網
上載者:User
關於在ASP.NET中實體路徑和虛擬路徑的取得

//Request.CurrentExecutionFilePath; 當前請求的虛擬路徑 是這種格式:/虛擬目錄名/admin/index.aspx
//Request.ApplicationPath    //擷取伺服器上 ASP.NET 應用程式的虛擬應用程式根路徑。/虛擬目錄名(應用程式名稱)

以上都是虛擬目錄中的檔案路徑,即是IIS中的路徑。要得到真真的實體路徑要在得到以上路徑的基礎上再加:
Server.MapPath(Request.ApplicationPath   +"SPLConfig/ClassMap.xml")//這樣可能會有一個BUG

最好是這樣
string m_ApplicationPath=Request.ApplicationPath;
   if(this.m_ApplicationPath=="")
    this.m_ApplicationPath="/";
   if(!this.m_ApplicationPath.EndsWith("/"))
    this.m_ApplicationPath +="/";  //先判斷一下 /
Server.MapPath(m_ApplicationPath+"SPLConfig/ClassMap.xml")

2005 地址Url 的新的訪問方式
//this.Request.CurrentExecutionFilePath; //當前請求的虛擬忙碌中的路徑
    //this.Request.FilePath;  //虛擬目錄中的路徑
    //this.Request.PhysicalPath;  //當前請求的實體路徑
    //this.Request.PhysicalApplicationPath;//應用程式的實體路徑
    //this.Request.Url.AbsoluteUri;//全部URL

Request.RawUrl 獲得網址帶變數 Request.UrlReferrer 獲得網址不帶變數

重新整理本頁面的方法 :
this.Response.Redirect(this.Request.Url.AbsoluteUri, true);

this.Response.Redirect(this.Request.Url.ToString());

定製方法的重新整理

this.Response.Redirect(this.Request.CurrentExecutionFilePath + "?depid=" + this.hDepID.Value.ToString());

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.