房子修得再大也是临时住所,只有那个小木匣才是永久的家,所以,屋宽不如心宽,身安不如心安!
获取Url的方法有两种,通过后台获得或通过前面js获得,如下:
1、通过C#获取当前页面的URL
string url = Request.Url.AbsoluteUri; //结果: //www.haodaima.com/web/index.aspx
string host = Request.Url.Host; //结果:www.haodaima.com
string rawUrl = Request.RawUrl; //结果:/web/index.aspx
string localPath = Request.Url.LocalPath; //结果:/web/index.aspx
2、通过Javascript获取当前页面的URL
var url = document.URL; //结果://www.haodaima.com/web/index.aspx
var href = document.location.href; //结果://www.haodaima.com/web/index.aspx
var host = location.hostname; //结果:www.haodaima.com
以上就是小编为大家带来的在asp.net中获取当前页面的URL的方法(推荐)的全部内容了,希望对大家有所帮助,多多支持~