@award123: I was talking to BoonKo, because his questions are not specific :)
Here's an VB.NET example
'declare variables
Dim gamerTag as string = "RoelLive"
Dim myWebRequest As WebRequest
Dim myWebResponse As WebResponse
Dim myXml As New XmlDocument
'create webrequest
myWebRequest = WebRequest.Create(String.Concat("http://www.360voice.com/api/games-listfav.asp?tag=", gamerTag))
myWebRequest.Method = "GET"
'get response
myWebResponse = myWebRequest.GetResponse()
'load response into xmlobject
myXml.Load(myWebResponse.GetResponseStream())
After the myXml.Load action checkout myXml.outerxml it will contain the XML from 360voice.com
I'm not using XSL at the moment, so that's not in the example right now.
When using this code, make sure you also use the following imports
Imports System.Xml
Imports System.Net