Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have my GUI files published on a server... this server is where the IIS is running..

Now i access my GUI from a remote machine. how can i get this machines IP address or username.

I get the server name of the machine using this code:

string svrName = System.Net.Dns.GetHostName();

please help thanks...

maybe i was not clear enough:

Let me explain again..

there are 2 machines A and B.. A is where i have my published files for the GUI and also the IIS... the above code gives me the name of machine A

now i call the GUI from machine B. and i want the name of machine B

share|improve this question
1  
What do you mean by "this machine"? You have two machines. Which machine's IP address do you want and on which machine is the code running? – Mark Byers Nov 23 '10 at 21:13
1  
What do you mean by "access". Is it TCP between the two applications or are you using remote desktop or what? What is the protocol of access? – Shiv Kumar Nov 23 '10 at 21:14
the code is running on the server machine... but my gui is running on my machine... i want the address of my machine... – user175084 Nov 23 '10 at 21:17
access = running the GUI – user175084 Nov 23 '10 at 21:18

2 Answers

up vote 5 down vote accepted

To get a remote user's IP from Asp.Net, you can use Request.ServerVariables["REMOTE_ADDR"] or Request.UserHostAddress.

The Request object should be available anywhere in your ASPX page.

I don't think it's possible to reliably get the hostname through ServerVariables.

share|improve this answer
thanks buddy... – user175084 Nov 23 '10 at 22:14
You're welcome. – Richard Marskell - Drackir Nov 23 '10 at 22:27

Assuming I understand what you're asking, System.Web.HttpContext.Current.Request will give your server-side code lots of information about the client making the request.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.