本實例的測試URL:http://www.mystudy.cn/web/index.aspx
1、透過C#取得目前頁面的URL
string url = Request.Url.AbsoluteUri; //结果: <a href="http://www.mystudy.cn/web/index.aspx" target="_blank">http://www.mystudy.cn/web/index.aspx</a> string host = Request.Url.Host; //结果:www.mystudy.cn string rawUrl = Request.RawUrl; //结果:/web/index.aspx string localPath = Request.Url.LocalPath; //结果:/web/index.aspx
2、透過Javascript取得目前頁面的網址以上就是C#取得目前頁面的URL範例程式碼的內容,更多相關內容請關注PHP中文網(www.php.cn)!