This is a discussion on I am using C# and aspx files and would like to create html code dynamically within the Programming forums, part of the Web Designing & Development category; in the aspx file? here is my code, XmlTextReader rss_reader = new XmlTextReader("http://www.goseattlecard.com/blog/feed/"); while (rss_reader.Read()) { if (rss_reader.IsStartElement("title")) { rss_reader.Read(); ...
in the aspx file? here is my code,
XmlTextReader rss_reader = new XmlTextReader("http://www.goseattlecard.com/blog/feed/");
while (rss_reader.Read())
{
if (rss_reader.IsStartElement("title"))
{
rss_reader.Read();
string title = rss_reader.Value;
}
I want to dynamically create div tags in the aspx to show each string value that I pull from each "title" node in the XML.
Bookmarks