Hi!
If you are using C# for your ASP .NET application you can definately do something like...
Code:
string ip = Page.Request.ServerVariables["LOCAL_ADDR"];
In order to see all the keys in the collection you can do something like this
Code:
NameValueCollection variables = Page.Request.ServerVariables;
string[] keys = variables.AllKeys;
for(int i = 0; i < keys.Length; i++)
Page.Response.Write(keys[i] + "<BR>");
I don't know too much about .NET applications. I am only doing ASP .NET in C#, so the above goes for ASP .NET.
Jacob.