获取当前页面的URL C#获取当前页面的URL代码实例
人气:0想了解C#获取当前页面的URL代码实例的相关内容吗,在本文为您仔细讲解获取当前页面的URL的相关知识和一些Code实例,欢迎阅读和指正,我们先划重点:c#,当前页面URL,下面大家一起来学习吧。
本实例的测试URL:http://www.mystudy.cn/web/index.aspx 1、通过C#获取当前页面的URL
复制代码 代码如下:
string url = Request.Url.AbsoluteUri; //结果: http://www.mystudy.cn/web/index.aspx
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获取当前页面的URL
复制代码 代码如下:
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
加载全部内容