I am using a Hit on server and getting the content in Streamer.
I then use a string where I get the Html code of the website.
I have to use this in a WPF application.
Which control should I use where I can put a url which contains html code to display in my wpf and HOW??
string urlcode;
HttpWebRequest request = WebRequest.Create("http://google.com/") as HttpWebRequest;
HttpWebResponse response = request.GetResponse() as HttpWebResponse;
StreamReader streamr = new StreamReader(response.GetResponseStream());
urlcode = streamr.ReadToEnd();