Hi....
We are using load balacing server environment which has two server 01 and 02.i am unble to find the server ip address
I am using the following code to fetch the server address but it shows the load balancing server ip address but i want to fetch the original server ip address
string strHostName = System.Net.Dns.GetHostName();
IPHostEntry ipHostInfo = Dns.Resolve(Dns.GetHostName());
IPAddress ipAddress = ipHostInfo.AddressList[0];
string myIP = ipAddress.ToString();
please help in this i want to fetch the original IP adddress