用户名:
密 码: 记住
您当前的位置:首页 > 网络编程 > Net教程

获取当前url

时间:2015-01-29  来源:互联网  作者:佚名
如:http://localhost/newurl/WebForm1.aspx
1.方法document.URL(注意大小写)
结果是:http://localhost/newurl/WebForm1.aspx

2.HttpContext.Current.Request.Url.ToString(),
结果:http://localhost/newurl/WebForm1.aspx

3.HttpContext.Current.Request.Url.PathAndQuery;
结果:/newurl/WebForm1.aspx

备注:
如果当前URL为
http://localhost/search.aspx?user=tinyfool&tag=%BC%BC%CA%F5
通过HttpContext.Current.Request.Url.ToString()获取到的却是
http://localhost/search.aspx?user=tinyfool&tag=¼¼Êõ
这显然不对,怎么办?用HttpContext.Current.Request.Url.PathAndQuery好了,这个得到的正确的。:)


4.Javascript取url值 
刚写的一个小实例.实际中使用还是蛮多的.


[Ctrl+A 全选 注:如需引入外部Js需刷新才能执行]
来顶一下
返回首页
返回首页
推荐资讯
ASP.NET入门数据篇 ASP.NET入门数据篇对于网站编程的初学者来说,总是会上网找些源码来看,但久而
ASP.NET2.0服务器控件之Render方法 ASP.NET2.0服务器控件之Render方法控件呈现是指向HTTP输出流中写入标记文本的过程。服务器通过
相关文章
栏目更新
栏目热门