Heim > Artikel > Backend-Entwicklung > C# Ruft den URL-Beispielcode der aktuellen Seite ab
Test-URL dieses Beispiels: http://www.mystudy.cn/web/index.aspx
1. Rufen Sie die URL der aktuellen Seite über C# ab
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. Rufen Sie die URL der aktuellen Seite über Javascript ab
var url = document.URL; //结果:http://www.mystudy.cn/web/index.aspx var href = document.location.href; //结果:http://www.mystudy.cn/web/index.aspx var host = location.hostname; //结果:www.mystudy.cn
Das Obige ist der Inhalt des Beispielcodes zum Abrufen der URL der aktuellen Seite in C#. Für weitere verwandte Inhalte zahlen Sie bitte Achtung auf die chinesische PHP-Website (www.php.cn)!