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.