Ok let me clear my doubt that I want the external IP address of my server. Its reason is -
On my LAN server there are few telephone records in the form of wav files. Now I used to play selected file in windows media player plug in by giving it a URL like this - http://192.168.1.16/MIS/Wav/CH1/128.wav
That record is played only locally (i.e. on LAN)
But now I deployed it on main server i.e. on 59.95.73.97 machine here also there are same wav files.
But now problem is that I create that URL through coding. In this I find the server's IP address using -
sServerIP = Request.ServerVariables("LOCAL_ADDR")
But it returns 192.168.1.14 i.e. internal IP address of that server instead of this I want its external IP address as - 59.95.73.97
So please tell me how to find that external IP address or how to play those records in that window media player's plug in.