• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

asp.net获取URL和IP地址

原作者: [db:作者] 来自: [db:来源] 收藏 邀请
HttpContext.Current.Request.Url.ToString() 并不可靠。

如果当前URL为 
http:
//localhost/search.aspx?user=http://csharp.xdowns.com&tag=%BC%BC%CA%F5 

通过HttpContext.Current.Request.Url.ToString()获取到的却是 

http:
//localhost/search.aspxuser=http://csharp.xdowns.com&tag=¼¼Êõ 


正确的方法是:HttpContext.Current.Request.Url.PathAndQuery
1、通过ASP.NET获取
如果测试的url地址是http:
//www.test.com/testweb/default.aspx, 结果如下:
Request.ApplicationPath:                /testweb
Request.CurrentExecutionFilePath:       
/testweb/default.aspx
Request.FilePath:                       
/testweb/default.aspx
Request.Path:                           
/testweb/default.aspx
Request.PhysicalApplicationPath:        E:\WWW\testwebRequest.PhysicalPath:                   E:\WWW\testweb\
default.aspx
Request.RawUrl:                         
/testweb/default.aspx
Request.Url.AbsolutePath:               
/testweb/default.aspx
Request.Url.AbsoluteUrl:                http:
//www.test.com/testweb/default.aspx
Request.Url.Host:                       www.test.com
Request.Url.LocalPath:                  
/testweb/default.aspx 

2、通过JS获取

<table width=100% cellpadding=0 cellspacing=0 border=0 >

<script> 

thisURL 
= document.URL; 

thisHREF 
= document.location.href; 

thisSLoc 
= self.location.href; 

thisDLoc 
= document.location; 

strwrite 
= "<tr><td valign=top>thisURL: </td><td>[" + thisURL + "]</td></tr>" 

strwrite 
+= "<tr><td valign=top>thisHREF: </td><td>[" + thisHREF + "]</td></tr>" 

strwrite 
+= "<tr><td valign=top>thisSLoc: </td><td>[" + thisSLoc + "]</td></tr>" 

strwrite 
+= "<tr><td valign=top>thisDLoc: </td><td>[" + thisDLoc + "]</td></tr>" 

document.write( strwrite ); 

</script> 

thisDLoc 
= document.location; <BR>

thisURL 
= document.URL; <BR>

thisHREF 
= document.location.href; <BR>

thisSLoc 
= self.location.href;<BR>

<script> 

thisTLoc 
= top.location.href; 

thisPLoc 
= parent.document.location; 

thisTHost 
= top.location.hostname; 

thisHost 
= location.hostname; 

strwrite 
= "<tr><td valign=top>thisTLoc: </td><td>[" + thisTLoc + "]</td></tr>" 

strwrite 
+= "<tr><td valign=top>thisPLoc: </td><td>[" + thisPLoc + "]</td></tr>" 

strwrite 
+= "<tr><td valign=top>thisTHost: </td><td>[" + thisTHost + "]</td></tr>" 

strwrite 
+= "<tr><td valign=top>thisHost: </td><td>[" + thisHost + "]</td></tr>" 

document.write( strwrite ); 

</script> 

thisTLoc 
= top.location.href; <BR>

thisPLoc 
= parent.document.location; <BR>

thisTHost 
= top.location.hostname; <BR>

thisHost 
= location.hostname;<BR>

<script> 

tmpHPage 
= thisHREF.split( "/" ); 

thisHPage 
= tmpHPage[ tmpHPage.length-1 ]; 

tmpUPage 
= thisURL.split( "/" ); 

thisUPage 
= tmpUPage[ tmpUPage.length-1 ]; 

strwrite 
= "<tr><td valign=top>thisHPage: </td><td>[" + thisHPage + "]</td></tr>" 

strwrite 
+= "<tr><td valign=top>thisUPage: </td><td>[" + thisUPage + "]</td></tr>" 

document.write( strwrite ); 

</script><tr><td>

=================
获取IP
1、ASP.NET中获取

获取服务器的IP地址: 
using System.Net; 

string myIP,myMac;
System.Net.IPAddress[] addressList 
= Dns.GetHostByName(Dns.GetHostName()).AddressList; 
if ( addressList.Length>1
>

鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
ASP.NET中实现MSN通知消息功能发布时间:2022-07-10
下一篇:
ASP.NET Forms 认证流程发布时间:2022-07-10
热门推荐
热门话题
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap