Search Results

1
vote
2answers
638 views

Use HTTPWebRequest to get remote page’s title

I have a web service that acts as an interface between a farm of websites and some analytics software. Part of the analytics tracking requires harvesting the page title. Rather than passing it from …
0
votes

Use HTTPWebRequest to get remote page’s title

So I would have to go with something like... HttpWebRequest req = (HttpWebRequest)WebRequest.Create(URL); HttpWebResponse resp = (HttpWebResponse)req.GetResponse(); Stream st …