asp.net、js中获取URL和IP地址方法大全 收藏
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.PathAndQuery1、通过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: http://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)
{
myIP = addressList[0].ToString();
myMac = addressList[1].ToString();
}
else
{
myIP = addressList[0].ToString();
myMac = "没有可用的连接";
}
myIP地址就是服务器端的ip地址。
获取客户端的ip地址,可以使用
//获取登录者ip地址
string ip = Request.ServerVariables["REMOTE_ADDR"].ToString();
2、通过JS获取
<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=gbk">
</head>
<body>
<object classid="CLSID:76A64158-CB41-11D1-8B02-00600806D9B6" id="locator" style="display:none;visibility:hidden"></object>
<object classid="CLSID:75718C9A-F029-11d1-A1AC-00C04FB6C223" id="foo" style="display:none;visibility:hidden"></object>
<form name="myForm">
<br/>MAC地址:<input type="text" name="macAddress">
<br/>IP地址:<input type="text" name="ipAddress">
<br/>主机名:<input type="text" name="hostName">
</form>
</body>
</html>
<script language="javascript">
var sMacAddr="";
var sIPAddr="";
var sDNSName="";
var service = locator.ConnectServer();
service.Security_.ImpersonationLevel=3;
service.InstancesOfAsync(foo, 'Win32_NetworkAdapterConfiguration');
</script>
<script FOR="foo" EVENT="OnObjectReady(objObject,objAsyncContext)" LANGUAGE="JScript">
if(objObject.IPEnabled != null && objObject.IPEnabled != "undefined" && objObject.IPEnabled == true){
if(objObject.IPEnabled && objObject.IPAddress(0) !=null && objObject.IPAddress(0) != "undefined")
sIPAddr = objObject.IPAddress(0);
if(objObject.MACAddress != null &&objObject.MACAddress != "undefined")
sMacAddr = objObject.MACAddress;
if(objObject.DNSHostName != null &&objObject.DNSHostName != "undefined")
sDNSName = objObject.DNSHostName;
}
</script>
<script FOR="foo" EVENT="OnCompleted(hResult,pErrorObject, pAsyncContext)" LANGUAGE="JScript">
myForm.macAddress.value=sMacAddr;
myForm.ipAddress.value=sIPAddr;
myForm.hostName.value=sDNSName;
</script>
相关推荐
本文将总结 ASP.NET 中获取 URL 和 IP 地址的方法。 一、使用 HttpContext.Current.Request.Url.ToString() 获取 URL 在 ASP.NET 中,可以使用 HttpContext.Current.Request.Url.ToString() 方法来获取当前的 URL...
为了帮助开发者更有效地完成这些任务,本文汇总了在***环境中获取URL和IP地址的一些方法。通过本文的详细解读,开发者可以更加熟悉***提供的内置对象和属性,并掌握在服务器端和客户端如何分别获取URL相关信息。 在...
总结来说,尽管在ASP.NET 2.0中获取客户端MAC地址可能面临诸多挑战,但结合JavaScript和WMI在客户端可以实现,再通过Ajax将数据传递回服务器,仍能实现这一目标。然而,这种方式在现代浏览器和隐私保护政策的背景下...
在ASP.NET中,获取客户端浏览器访问的IP地址是常见的需求,尤其在进行用户访问权限控制、数据分析或地理位置定位时。本文将详细介绍两种方法来获取这一信息:JavaScript 和 ASP.NET 后台代码。 1. JavaScript方法:...
在"ASP.NET网站统计分析"这个主题中,我们将深入探讨如何利用ASP.NET技术和相关工具来实现对网站流量的详细统计和分析。 首先,我们要了解基础环境的搭建。SQLServer2000是一个关系型数据库管理系统,用于存储和...
* ASP.NET 网站的 URL 由协议、服务器 IP 地址、端口号、虚拟目录和文件名组成 * ASP.NET 3.5 仍使用 ASP.NET 2.0 引擎 *托管代码是以 CLR 为基础的代码 * ASP.NET 3.5 不包括 .NET Framework 1.1 三、XML 和 XHTML...
### JavaScript脚本技术 #### 一、JavaScript简介...通过以上内容可以看出,JavaScript脚本技术和ASP.NET内置对象是Web开发中非常重要的组成部分。熟练掌握这些基础知识和技术点对于开发高质量的Web应用程序至关重要。
数据库可能包含诸如访问次数、用户IP地址、访问时间、停留页面、浏览器信息、来源URL等字段。常见的关系型数据库如SQL Server或MySQL可以用来存储这些信息。 2. 页面跟踪:利用ASP.NET的HTTP模块或Global.asax文件...
35. **客户端信息获取**:ASP.NET可以通过HttpRequest对象获取客户端信息,如浏览器类型、IP地址等。 36. **TreeView控件**:用于构建树形结构,常见于导航菜单或文件系统结构的展示。 37. **Repeater添加序号**:...
这可以通过自定义的日志记录类实现,将每次请求的详细信息(如URL、时间、IP地址等)记录下来。 6. **报表展示**:统计信息最终需要以报表的形式呈现给管理员,这可能涉及到数据可视化技术,如图表库(如Google ...
- **UserHostAddress**: 获取远程客户端的IP地址。 - **Browser**: 获取有关客户端浏览器功能的信息。 2. **方法** - **BinaryRead**: 读取当前请求中的二进制数据。 - **MapPath**: 将虚拟路径映射为物理路径...
- **定义**: 在ASP.NET中使用DataList控件实现动态添加和删除数据的功能。 - **实现方法**: 为DataList控件添加编辑和删除项。 #### 41. Asp.net 获取请求的用户信息 IP 地址 - **定义**: 获取发起请求用户的IP地址...
在本系统中,可能包含了用户访问记录表、页面浏览记录表、来源分析表等,用于存储IP地址、访问时间、页面URL、浏览器类型等关键信息。数据库设计应遵循规范化原则,确保数据的完整性和一致性。 该系统的实现可能...
内容简介回到顶部↑本书全面介绍了ASP.NET各种编程技能和2.0版中的巨大变化,并详细阐述了2.0版中的每个新特性。书中提供了大量的实例,可帮助读者快速掌握如何在.NET平台下开发功能强大的ASP.NET应用程序。本书适合...
在Windows 7操作系统中发布一个ASP.NET网站涉及多个步骤,以下是对这些步骤的详细说明: 首先,你需要有一个已经开发完成的ASP.NET网站。这通常包括HTML、CSS、JavaScript以及C#或VB.NET编写的服务器端代码,它们...
ASP.NET的核心优势在于其事件驱动模型和编译式编程,使得开发人员可以更便捷地构建动态网页应用。 在这个在线投票系统的源码中,我们可以学习到以下几个关键知识点: 1. **MVC架构**:ASP.NET支持Model-View-...
本文将详细介绍一些常用的正则表达式及其在ASP.NET中的应用场景。 #### 二、数字类正则表达式 1. **匹配任何数字:** `^[0-9]*$` - 这个表达式可以匹配任意长度的数字串,包括空串。 2. **匹配确切长度为n的数字...