Hello everyone,

I want to do some work for RSS Feed.

I know dot net fair enough. I managed to get the xml data generated from Database like the following format

<item>
<title>title1</title>
<link>http://www.test.com/test.asp?articlceId = 23</link>
<description>sometext</description>
</item>
<item>
<title>title2</title>
<link>http://www.test.com/test.asp?articlceId = 24</link>
<description>sometext</description>
</item>
<item>
<title>title3</title>
<link>http://www.test.com/test.asp?articlceId = 25</link>
<description>sometext</description>
</item>
<item>
<title>title4</title>
<link>http://www.test.com/test.asp?articlceId = 26</link>
<description>sometext</description>
</item>


But for RSS feed I need a extra information like

<rss>
<channel>
<title>sitename</title>
<link>blah,blah,blah</link>
<dateUpdated>2/11/05</dateUpdated>
</channel>
</rss>


Please can you guys let me know how to add the channel information to my above xml.

Thanks,
dummy