時(shí)間:2015-06-28 00:00:00 來(lái)源:IT貓撲網(wǎng) 作者:網(wǎng)管聯(lián)盟 我要評(píng)論(0)
??? 獲取URL:
??? 1、通過(guò)ASP.NET獲取如果測(cè)試的url地址是http://www.test.com/testweb/default.aspx, 結(jié)果如下:
??? Request.ApplicationPath: /testweb Request.CurrentExecutionFilePath: /testweb/default.aspx Request.FilePath: /testweb/default.aspx Request.Path: /testweb/default.aspx Request.PhysicalApplicationPath: E:\WWW\testweb\ Request.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、通過(guò)JS獲取
???
thisURL: | [" + thisURL + "] |
thisHREF: | [" + thisHREF + "] |
thisSLoc: | [" + thisSLoc + "] |
thisDLoc: | [" + thisDLoc + "] |
thisTLoc: | [" + thisTLoc + "] |
thisPLoc: | [" + thisPLoc + "] |
thisTHost: | [" + thisTHost + "] |
thisHost: | [" + thisHost + "] |
thisHPage: | [" + thisHPage + "] |
thisUPage: | [" + thisUPage + "] |
#p#副標(biāo)題#e# ??? 獲取IP ??? 1、ASP.NET中獲取 ??? 獲取服務(wù)器的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 = "沒(méi)有可用的連接"; ??? } ??? myIP地址就是服務(wù)器端的ip地址。 ??? 獲取客戶端的ip地址,可以使用 ??? //獲取登錄者ip地址 ??? string ip = Request.ServerVariables["REMOTE_ADDR"].ToString(); ??? 2、通過(guò)JS獲取 ??? ??? ??? ??? ??? ??? ??? ??? ??? ??? ??? ??? ??? var sMacAddr=""; ??? var sIPAddr=""; ??? var sDNSName=""; ??? var service = locator.ConnectServer(); ??? service.Security_.ImpersonationLevel=3; ??? service.InstancesOfAsync(foo, 'Win32_NetworkAdapterConfiguration'); ??? ??? ??? &nb 關(guān)鍵詞標(biāo)簽:asp.net,URL,IP地址 相關(guān)閱讀
熱門文章 誅仙3飛升任務(wù)怎么?�-誅仙3飛升任務(wù)流程最?�2022 鐘離圣遺物推?�-原神鐘離圣遺物詞?� 解決方法:應(yīng)用程序“DEFAULT WEB SITE”中的服務(wù)器錯(cuò)誤 使用aspnet_regiis.exe 重新注冊(cè).NET Framework
相關(guān)下載
人氣排行 誅仙3飛升任務(wù)怎么?�-誅仙3飛升任務(wù)流程最?�2022 asp.net表單提交方法GET\POST 在ASP.NET中如何判斷用戶IE瀏覽器的版本 Asp.net中messagebox的實(shí)現(xiàn)方?� Asp.net中的web.config配置 在ASP.NET MVC中實(shí)現(xiàn)大文件異步上傳 asp.net獲取URL和IP地址 FileUpload上傳多文件出現(xiàn)錯(cuò)誤的解決方法
|