26-10-12, 04:20 AM
GethostbyName تم إلغاؤها وتم إستخدام GetHostEntry
إليك هذه الدالة التى سوف تقوم بإرجاع رقم ال ipv4
إليك هذه الدالة التى سوف تقوم بإرجاع رقم ال ipv4
PHP كود :
Function GetIpAddresss(ByVal hostname As String) As String
Dim ip As String = Nothing
Dim i As Integer
For i = 0 To Dns.GetHostEntry(hostname).AddressList.Length - 1
If Dns.GetHostEntry(hostname).AddressList(i).IsIPv6LinkLocal = False Then
ip = Dns.GetHostEntry(hostname).AddressList(i).ToString()
End If
Next
Return ip
End Function

