我試圖獲取用戶的外部IP,以便我可以將其保存到他們的用戶文件。但我找不到任何辦法。我試着這樣做:獲取外部IP
Private Function getExternalIP() As Net.IPAddress
Using wc As New Net.WebClient
Return Net.IPAddress.Parse(Encoding.ASCII.GetString(wc.DownloadData("http://whatismyip.com/automation/n09230945.asp")))
End Using
End Function
但我總是收到出現FormatException稱「IP無效」
我們需要知道從什麼http://whatismyip.com/automation/n09230945.asp響應樣子。 –
這從2012年工作正常,因此評論 - http://www.codeproject.com/Tips/452024/Getting-the-External-IP-Address –