C#获取当前页面的URL示例代码
摘要:本实例的测试URL:http://www.mystudy.cn/web/index.aspx1、通过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
【C#获取当前页面的URL示例代码】相关文章:
★ 获取当前url
★ 用asp.net c# HttpWebRequest获取网页源代码
下一篇:
通过C#动态生成图书信息XML文件