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 |
I am constantly writing the drawing procedures with system.drawing.graphics, but having to use the try and dispose blocks is too time-consuming with graphicsobjects. Can I automate this?
What is meant by globalization?
Describe the difference between inline and code behind which is best in a loosely coupled solution?
What are the deferred execution and the immediate execution in linq?
What is the use of edititem template ingridview?
1 Answers C Squared Systems, Microsoft,
Will my .net app run on 64-bit windows?
Explain the difference between garbage collections in .net 4.0 and earlier versions?
Explain what are the deferred execution and the immediate execution in linq?
What is a windows process in .net?
Explain why do we use msmq?
What is UDDI and how to register a web service ?
Write a program to create a user control with name and surname as data members and login as method and also the code to call it.