How to get the hostname or IP address of the server?
Answers were Sorted based on User's Feedback
Answer / praveen
string IpAddress=HttpContext.Current.Request.UserHostName;
| Is This Answer Correct ? | 3 Yes | 0 No |
Answer / soumya
Dim myHost As String = System.Net.Dns.GetHostName
Dim myIPs As System.Net.IPHostEntry =
System.Net.Dns.GetHostByName(myHost)
MessageBox.Show("The name of the host is = " &
myIPs.HostName, "Host Name", MessageBoxButtons.OK,
MessageBoxIcon.Information)
For Each myIP As System.Net.IPAddress In myIPs.AddressList
MessageBox.Show("The IP address of host is = " &
myIP.ToString, "Host IP Address", MessageBoxButtons.OK,
MessageBoxIcon.Information)
Next
| Is This Answer Correct ? | 0 Yes | 0 No |
What are Attributes in .NET?
what is assembly?
What is Event - Delegate? clear syntax for writing a event delegate
What is il and c#?
How do you turn off cookies for one page in your site? Give an example.
How is .net core cross platform?
What is lambda expressions in c#?
What is the difference between asp.net and asp?
What does cli do?
Is string a value type or a reference type?
What is view state in .net?
What is Delegate? Have ever used Delegates in your project.