protectedvoid Button_Rssreader_Click(object sender, EventArgs e)
{var reader = XmlReader.Create(TextBox1.Text);var feed = SyndicationFeed.Load(reader);
reader.Close(); string s = "";foreach (SyndicationItem i in feed.Items)
{
s += i.Title.Text + "<br />"+ i.Summary.Text + "<br/>"+ i.PublishDate.ToString() + "<br />"+ "<br />"+ (i.Content as TextSyndicationContent).Text.Trim();
s += "<hr />";
}
Literal1.Text = s;
}
But i can just see the summary of RSS link if Delete (i.Content as TextSyndicationContent).Text.Trim()
i want to see the links of picture beside summary in the Rss link
Point : id don't want to see the link of picture that is in the XML links. really i need to read & download the Rss Links of picture to Display them beside the news (text ).