I want to display a song list in a textBlock which is retrieved from a site but when I use httpwebStreamReader.ReadToEnd() I get other results than visiting this site from my computer explorer. Here is the code:
using (StreamReader httpwebStreamReader = new StreamReader(myResponse.GetResponseStream()))
{
string results = httpwebStreamReader.ReadToEnd();
Dispatcher.BeginInvoke(() => { textBlock1.Text = results;});
}
//this is the site-> http://5.9.17.81:9996/played.html
this is what i get: image