欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

获取当前url

程序员文章站 2023-11-25 13:16:22
如:http://localhost/newurl/webform1.aspx 1.方法document.url(注意大小写) 结果是:http://localhost/n...
如: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值 
刚写的一个小实例.实际中使用还是蛮多的.