Well the problem is that I am new to asp.net technology and I am stuck on a problem.
Now the scenario is that I have to send an HTTPrequest to another server from my page, lets say myGames.aspx and in response to the request the server sends me an XML file. Now I don’t know how to handle this situation, I mean I am like a total noob 🙁
Also I don’t have just to display the data, I have to send different fields of the XML to different databse tables, but thats a later issue, I’d first like to do some practice with the XML data just on screen before involving in sending it to database.
To play with the XML data if you are using .net version 3.5 its better to user LINQ to XML.
http://www.codeproject.com/Articles/24376/LINQ-to-XML
or
Manipulate XML data with XPath and XmlDocument (C#)