grabbing information from other sites.

is there anyone who knows how to grab information from another web site.Of course the website is owned by another server :) I tried to use a program called ASPTear,but I couldnt manage it.I would be glad if u help me in some way.Have you tried the creating an HttpWebRequest from the System.Net namespace in the .Net Library? This should allow you to issue a GET command for the desired page and return it as a stream. You can then parse the stream to do with it whatever it is you want to do. Even better if it's a valid XML document you can pass the stream directly into the XmlDocument Load method (System.Xml) and manipulate it that way.
 
Back
Top