程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> ASP.NET >> ASP.NET基礎 >> ASP.NET獲取URL方法匯總

ASP.NET獲取URL方法匯總

編輯:ASP.NET基礎

//獲取完整url (協議名+域名+站點名+文件名+參數)

string fullUrl = Request.Url.ToString();

//獲取客戶端請求的URL信息(不包括主機和端口)

string rawUrl = Request.RawUrl;

//獲取站點名+頁面名

string absolutePath = Request.Url.AbsolutePath;

//獲取主機部分

string urlHost = Request.Url.Host;

//獲取參數部分

string urlQuery = Request.Url.Query;

//獲取服務器上ASP.NET應用程序的虛擬路徑

string ApplicationPath = Request.ApplicationPath;

//獲取當前請求的虛擬路徑

string CurrentExecutionFilePath = Request.CurrentExecutionFilePath;

//獲取當前請求的虛擬路徑

string Path = Request.Path;

//獲取具有URL擴展名的資源的附加路徑信息

string PathInfo = Request.PathInfo;

//獲取與請求的URL相對應的物理文件系統路徑

string PhysicalPath = Request.PhysicalPath;

//獲取文件名的本地操作系統表示形式

string LocalPath = Request.Url.LocalPath;

//獲取絕對URL

string AbsoluteUri = Request.Url.AbsoluteUri;

完整代碼演示

復制代碼 代碼如下:
StringBuilder sb = new StringBuilder();
sb.Append("獲取完整url(協議名+域名+站點名+文件名+參數):" + fullUrl + "<br />");
sb.Append("獲取客戶端請求的URL信息(不包括主機和端口):" + rawUrl + "<br />");
sb.Append("獲取站點名+頁面名:" + absolutePath + "<br />");
sb.Append("獲取主機部分:" + urlHost + "<br />");
sb.Append("獲取參數部分:" + urlQuery + "<br />");
sb.Append("獲取應用程序的虛擬應用程序根路徑:" + ApplicationPath + "<br />");
sb.Append("獲取當前請求的虛擬路徑:" + Path + "<br />");
sb.Append("獲取具有URL擴展名的資源的附加路徑信息:" + PathInfo + "<br />");
sb.Append("獲取與請求的URL相對應的物理文件系統路徑:" + PhysicalPath + "<br />");
sb.Append("獲取文件名的本地操作系統表示形式:" + LocalPath + "<br />");
sb.Append("獲取絕對URL:" + AbsoluteUri + "<br />");
Response.Write(sb.ToString());

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved