Click to See Complete Forum and Search --> : server variables


PeOfEo
06-01-2003, 04:17 PM
how easy is it to access server variables in xml and how would I. I might just use a global.aspx if this proves to be annoying. I need to access I users IP address in particular I dont need anything else.

Khalid Ali
06-02-2003, 08:33 AM
XML itself does not do anything like that,its the other tools that you use make it an extremely useable language.

The kind of information you are interested in will be inside HTTP header data.Any server side programming language should have to tools to parse that and give you the required info.

PeOfEo
06-04-2003, 02:51 AM
well I use asp.net and I was think that if I used xml with asp.net I could do it instead of using a global asax because putting that code in my global I fear will interfear with other aps.