获取Url的方法有两种,通过后台获得或通过前面js获得,如下:
1、通过C#获取当前页面的URL
string url = Request.Url.AbsoluteUri; //结果: https://www.atool.online/web/index.aspx
string host = Request.Url.Host; //结果:www.atool.online
string rawUrl = Request.RawUrl; //结果:/web/index.aspx
string localPath = Request.Url.LocalPath; //结果:/web/index.aspx
2、通过Javascript获取当前页面的URL
var url = document.URL; //结果:https://www.atool.online/web/index.aspx
var href = document.location.href; //结果:https://www.atool.online/web/index.aspx
var host = location.hostname; //结果:www.atool.online
以上就是小编为大家带来的在asp.net中获取当前页面的URL的方法(推荐)的全部内容了,希望对大家有所帮助,多多支持阿兔在线工具~