首页 >后端开发 >C#.Net教程 >C#获取当前页面的URL示例代码

C#获取当前页面的URL示例代码

黄舟
黄舟原创
2017-01-19 11:05:301168浏览

本实例的测试URL:http://www.mystudy.cn/web/index.aspx 

1、通过C#获取当前页面的URL 

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、通过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示例代码的内容,更多相关内容请关注PHP中文网(www.php.cn)!


声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn