My program won't display all the text on a webpage, it basically only reads the first line. I am using a rich textbox to display the text.
void readrss()
{
try
{
newstxt.Text = string.Empty;
StreamReader x = new StreamReader(WebRequest.Create("http://www.xample.net/").GetResponse().GetResponseStream());
newstxt.Text += x.ReadLine();
x.Close();
newstxt.Text = newstxt.Text.Replace("<", "•");
}
catch { }
}