<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://forums.asp.net/utility/FeedStylesheets/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>Data Access and ObjectDataSource Control</title><link>http://forums.asp.net/23.aspx</link><description>Questions and discussions related to using ADO.NET for data access, and the ObjectDataSource control. &lt;a href="http://aspadvice.com/SignUp/list.aspx?l=9&amp;c=17" target="_blank"&gt;Email List&lt;/a&gt;</description><dc:language>en</dc:language><generator>CommunityServer 2007 SP1 (Build: 20510.895)</generator><item><title>Re: Accessing data without the controls</title><link>http://forums.asp.net/thread/1375594.aspx</link><pubDate>Sun, 20 Aug 2006 02:23:37 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:1375594</guid><dc:creator>wsmonroe</dc:creator><author>wsmonroe</author><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/1375594.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=23&amp;PostID=1375594</wfw:commentRss><description>Hi,&lt;br /&gt;&lt;br /&gt;I started using RSSToolkit tonight and ran into the same problem. I figured out how to get it working. It's done as follows (this is using VB, it's easily converted to C#):&lt;br /&gt;&lt;br /&gt;&amp;nbsp;&lt;pre class="coloredcode"&gt;&lt;span class="kwd"&gt;Dim&lt;/span&gt; Title as string&lt;br /&gt;&lt;span class="kwd"&gt;Dim&lt;/span&gt; Descriptin as string&lt;br /&gt;&lt;span class="kwd"&gt;Dim&lt;/span&gt; PostDate as string&lt;br /&gt;&lt;br /&gt;&lt;span class="kwd"&gt;Dim&lt;/span&gt; Data as RssToolkit.GenericRssChannel&lt;br /&gt;Data = RssToolkit.GenericRssChannel.LoadChannel(&lt;span class="st"&gt;"http://www.phish.com/news/index.xml"&lt;/span&gt;)&lt;br /&gt;&lt;br /&gt;&lt;span class="cmt"&gt;'I'm not sure if the following line is needed or not.&lt;br /&gt;'I haven't tested without it yet.&lt;/span&gt;
Data.SelectItems()

&lt;span class="kwd"&gt;For Each&lt;/span&gt; Item &lt;span class="kwd"&gt;As&lt;/span&gt; RssToolkit.GenericRssElement &lt;span class="kwd"&gt;In&lt;/span&gt; Data.Items&lt;br /&gt;   &lt;span class="cmt"&gt;'Now you can get the values for each item using &lt;br /&gt;   'the attributes collection like so:&lt;/span&gt;

   Title = Item.Attributes(&lt;span class="st"&gt;"Title"&lt;/span&gt;)&lt;br /&gt;   Description = Item.Attributes(&lt;span class="st"&gt;"Description"&lt;/span&gt;)&lt;br /&gt;   PostDate = Item.Attributes(&lt;span class="st"&gt;"dc:date"&lt;/span&gt;)&lt;br /&gt;&lt;br /&gt;   &lt;span class="cmt"&gt;'etc ...&lt;/span&gt;

&lt;span class="kwd"&gt;Next&lt;/span&gt;&lt;/pre&gt;&amp;nbsp;&lt;br /&gt;Hope this helps ....&lt;br /&gt;</description></item><item><title>Re: Accessing data without the controls</title><link>http://forums.asp.net/thread/1305147.aspx</link><pubDate>Mon, 05 Jun 2006 07:54:45 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:1305147</guid><dc:creator>dirkpitt</dc:creator><author>dirkpitt</author><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/1305147.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=23&amp;PostID=1305147</wfw:commentRss><description>Thanks for your response, I have not looked at this problem again since my last post, I guess I have to assume the language doesnt cater that well to anything other than spoon feeding, or there is just&amp;nbsp; no one around who knows how it really works properly due to lack of documentation about anything other than simple control operation. &lt;br /&gt;&lt;br /&gt;Thanks for your reply, Execute scalar looks like it may help if I was querying a database. &lt;br /&gt;&lt;br /&gt;If anyone else out there can shed some light on what seems like a very simple request, then feel free to throw in your five cents.&amp;nbsp; &lt;br /&gt;&lt;br /&gt;Thanks again&lt;br /&gt;&lt;br /&gt;Dirk &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;</description></item><item><title>Re: Accessing data without the controls</title><link>http://forums.asp.net/thread/1303476.aspx</link><pubDate>Fri, 02 Jun 2006 13:14:00 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:1303476</guid><dc:creator>pettrer</dc:creator><author>pettrer</author><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/1303476.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=23&amp;PostID=1303476</wfw:commentRss><description>&lt;p&gt;Hi there,&lt;/p&gt;
&lt;p&gt;I couldn't agree with you more regarding the lack of documentation.&lt;/p&gt;
&lt;p&gt;Rather than digging into your coding problem, let me tell you what I came up with. In this case, I retrieve one variable from a db and put it in a .aspx page. (VWD Express, VB)&lt;/p&gt;&lt;font color=#0000ff size=2&gt;
&lt;p&gt;Protected&lt;/p&gt;&lt;/font&gt;&lt;font size=2&gt; &lt;/font&gt;&lt;font color=#0000ff size=2&gt;Sub&lt;/font&gt;&lt;font size=2&gt; Page_Load(&lt;/font&gt;&lt;font color=#0000ff size=2&gt;ByVal&lt;/font&gt;&lt;font size=2&gt; sender &lt;/font&gt;&lt;font color=#0000ff size=2&gt;As&lt;/font&gt;&lt;font size=2&gt; &lt;/font&gt;&lt;font color=#0000ff size=2&gt;Object&lt;/font&gt;&lt;font size=2&gt;, &lt;/font&gt;&lt;font color=#0000ff size=2&gt;ByVal&lt;/font&gt;&lt;font size=2&gt; e &lt;/font&gt;&lt;font color=#0000ff size=2&gt;As&lt;/font&gt;&lt;font size=2&gt; System.EventArgs) &lt;/font&gt;&lt;font color=#0000ff size=2&gt;Handles&lt;/font&gt;&lt;font size=2&gt; &lt;/font&gt;&lt;font color=#0000ff size=2&gt;Me&lt;/font&gt;&lt;font size=2&gt;.Load&lt;/font&gt;
&lt;p&gt;&lt;font size=2&gt;TidpunktHiddenField.Value = DateTime.Now&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font color=#0000ff size=2&gt;Dim&lt;/font&gt;&lt;font size=2&gt; serie = &lt;/font&gt;&lt;font color=#800000 size=2&gt;"A"&lt;/font&gt;&lt;/p&gt;&lt;font size=2&gt;
&lt;p&gt;&lt;/p&gt;&lt;/font&gt;&lt;font color=#0000ff size=2&gt;If&lt;/font&gt;&lt;font size=2&gt; Page.IsPostBack &lt;/font&gt;&lt;font color=#0000ff size=2&gt;Then&lt;/font&gt;&lt;font size=2&gt; serie = SerieDropDownList.SelectedValue &lt;/font&gt;&lt;font color=#008000 size=2&gt;'serie sätts&lt;/font&gt;&lt;font size=2&gt;
&lt;p&gt;&lt;/p&gt;&lt;/font&gt;&lt;font color=#0000ff size=2&gt;If&lt;/font&gt;&lt;font size=2&gt; &lt;/font&gt;&lt;font color=#0000ff size=2&gt;Not&lt;/font&gt;&lt;font size=2&gt; Page.IsPostBack &lt;/font&gt;&lt;font color=#0000ff size=2&gt;Then&lt;/font&gt;&lt;font size=2&gt; serie = &lt;/font&gt;&lt;font color=#800000 size=2&gt;"A"&lt;/font&gt;&lt;font size=2&gt;
&lt;p&gt;&lt;/p&gt;&lt;/font&gt;&lt;font color=#0000ff size=2&gt;Dim&lt;/font&gt;&lt;font size=2&gt; conn &lt;/font&gt;&lt;font color=#0000ff size=2&gt;As&lt;/font&gt;&lt;font size=2&gt; SqlConnection = &lt;/font&gt;&lt;font color=#0000ff size=2&gt;New&lt;/font&gt;&lt;font size=2&gt; SqlConnection(System.Configuration.ConfigurationManager.ConnectionStrings(&lt;/font&gt;&lt;font color=#800000 size=2&gt;"wizzyConnectionString"&lt;/font&gt;&lt;font size=2&gt;).ConnectionString)
&lt;p&gt;&lt;/p&gt;&lt;/font&gt;&lt;font color=#0000ff size=2&gt;Dim&lt;/font&gt;&lt;font size=2&gt; cmd &lt;/font&gt;&lt;font color=#0000ff size=2&gt;As&lt;/font&gt;&lt;font size=2&gt; SqlCommand = &lt;/font&gt;&lt;font color=#0000ff size=2&gt;New&lt;/font&gt;&lt;font size=2&gt; SqlCommand(&lt;/font&gt;&lt;font color=#800000 size=2&gt;"SELECT TOP 1 vnr from products WHERE [fid]=1 AND [serie] = '"&lt;/font&gt;&lt;font size=2&gt; &amp;amp; serie &amp;amp; &lt;/font&gt;&lt;font color=#800000 size=2&gt;"' ORDER BY vnr DESC"&lt;/font&gt;&lt;font size=2&gt;, conn)
&lt;p&gt;conn.Open()&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;&lt;/font&gt;&lt;font color=#0000ff size=2&gt;Dim&lt;/font&gt;&lt;font size=2&gt; id &lt;/font&gt;&lt;font color=#0000ff size=2&gt;As&lt;/font&gt;&lt;font size=2&gt; &lt;/font&gt;&lt;font color=#0000ff size=2&gt;String&lt;/font&gt;&lt;font size=2&gt; = cmd.ExecuteScalar
&lt;p&gt;conn.Close()&lt;/p&gt;
&lt;p&gt;VnrvardeLabel.Text = serie &amp;amp; &lt;/p&gt;&lt;/font&gt;&lt;font color=#800000 size=2&gt;":"&lt;/font&gt;&lt;font size=2&gt; &amp;amp; id + 1&lt;/font&gt;
&lt;p&gt;&lt;font size=2&gt;... etc (other pageload stuff).&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font size=2&gt;&lt;font size=3&gt;And in the .aspx page, simply insert the label defined in the code above:&lt;/font&gt;&lt;/font&gt;&lt;/p&gt;&lt;font size=2&gt;&lt;font color=#0000ff size=2&gt;
&lt;p&gt;&amp;lt;&lt;/p&gt;&lt;/font&gt;&lt;font color=#800000 size=2&gt;asp&lt;/font&gt;&lt;font color=#0000ff size=2&gt;:&lt;/font&gt;&lt;font color=#800000 size=2&gt;Label&lt;/font&gt;&lt;font size=2&gt; &lt;/font&gt;&lt;font color=#ff0000 size=2&gt;ID&lt;/font&gt;&lt;font color=#0000ff size=2&gt;="VnrvardeLabel"&lt;/font&gt;&lt;font size=2&gt; &lt;/font&gt;&lt;font color=#ff0000 size=2&gt;runat&lt;/font&gt;&lt;font color=#0000ff size=2&gt;="server"&lt;/font&gt;&lt;font size=2&gt; &lt;/font&gt;&lt;font color=#ff0000 size=2&gt;Style&lt;/font&gt;&lt;font color=#0000ff size=2&gt;="z-index: 102; left: 120px; position: absolute;
&lt;p&gt;top: 120px"&lt;/p&gt;&lt;/font&gt;&lt;font size=2&gt; &lt;/font&gt;&lt;font color=#ff0000 size=2&gt;Text&lt;/font&gt;&lt;font color=#0000ff size=2&gt;=""&lt;/font&gt;&lt;font size=2&gt; &lt;/font&gt;&lt;font color=#ff0000 size=2&gt;ToolTip&lt;/font&gt;&lt;font color=#0000ff size=2&gt;="Numret som satts."&amp;gt;&lt;/font&gt;&lt;font size=2&gt;
&lt;p&gt;&lt;/p&gt;&lt;/font&gt;&lt;font color=#0000ff size=2&gt;&amp;lt;/&lt;/font&gt;&lt;font color=#800000 size=2&gt;asp&lt;/font&gt;&lt;font color=#0000ff size=2&gt;:&lt;/font&gt;&lt;font color=#800000 size=2&gt;Label&lt;/font&gt;&lt;font color=#0000ff size=2&gt;&amp;gt;&lt;/font&gt;
&lt;p&gt;&lt;font color=#0000ff size=2&gt;&lt;font color=#000000 size=3&gt;There are other things like ExceuteScalar if you need more than one value, but others would know more about those than I do.&lt;/font&gt;&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font color=#0000ff size=2&gt;&lt;font color=#000000 size=3&gt;Hope this helps!&lt;/font&gt;&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font color=#0000ff size=2&gt;&lt;font color=#000000 size=3&gt;Pettrer&lt;/font&gt;&lt;/font&gt;&lt;/p&gt;&lt;/font&gt;</description></item><item><title>Re: Accessing data without the controls</title><link>http://forums.asp.net/thread/1301204.aspx</link><pubDate>Wed, 31 May 2006 10:55:06 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:1301204</guid><dc:creator>dirkpitt</dc:creator><author>dirkpitt</author><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/1301204.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=23&amp;PostID=1301204</wfw:commentRss><description>Thanks for responding, 5 days, 2 forums, emailed the author and still no joy.. :(&lt;br /&gt;&lt;br /&gt;Is it because I am trying to do something abnormal, I would have thought this very common?&lt;br /&gt;&lt;br /&gt;Error&amp;nbsp;&amp;nbsp;&amp;nbsp; 1&amp;nbsp;&amp;nbsp;&amp;nbsp; 'RssToolkit.RssElementCustomTypeDescriptor' is inaccessible due to its protection level&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;br /&gt;</description></item><item><title>Re: Accessing data without the controls</title><link>http://forums.asp.net/thread/1300007.aspx</link><pubDate>Tue, 30 May 2006 11:16:17 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:1300007</guid><dc:creator>rumbafum</dc:creator><author>rumbafum</author><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/1300007.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=23&amp;PostID=1300007</wfw:commentRss><description>&lt;p&gt;I was seeing the RssToolkit and the method you're using c.SelectItems can return an ArrayList and in each of the arraylist position is a &lt;font size=3&gt;RssElementCustomTypeDescriptor object... Try to use this object properties to get the attributes values and stuff... So do the same i told you but getting data from the array to objects like this&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;ArrayList arr = new ArrayList();&lt;/p&gt;
&lt;p&gt;arr = c.SelectItems();&lt;/p&gt;
&lt;p&gt;RssElementCustomTypeDescriptor rssElement = (RssElementCustomTypeDescriptor)arr[0];&lt;/p&gt;
&lt;p&gt;Try this don't know if it works thow&lt;/p&gt;</description></item><item><title>Re: Accessing data without the controls</title><link>http://forums.asp.net/thread/1299793.aspx</link><pubDate>Tue, 30 May 2006 03:21:48 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:1299793</guid><dc:creator>dirkpitt</dc:creator><author>dirkpitt</author><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/1299793.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=23&amp;PostID=1299793</wfw:commentRss><description>Documentation is a bit thin..&lt;br /&gt;
&lt;br /&gt;
Lets say the data stored is a string. I hve attempted to cycle through
the positions to output&amp;nbsp; data, but generally i just get something
like &lt;br /&gt;
&lt;br /&gt;
GenericRSS.channel.ArrayList&lt;br /&gt;
&lt;br /&gt;
or similiar. I cant give the exact message because i dont have it in front of me at the moment.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;</description></item><item><title>Re: Accessing data without the controls</title><link>http://forums.asp.net/thread/1299450.aspx</link><pubDate>Mon, 29 May 2006 16:13:34 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:1299450</guid><dc:creator>rumbafum</dc:creator><author>rumbafum</author><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/1299450.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=23&amp;PostID=1299450</wfw:commentRss><description>&lt;p&gt;yep i forgot the arraylist cast sorry ....&lt;/p&gt;
&lt;p&gt;now you have all data inside your ArrayList test... You can access all the array positions and check for data... You need to know what type of data c.SelectItems stores in your ArrayList... Don't you have any documentation about this?&lt;/p&gt;</description></item><item><title>Re: Accessing data without the controls</title><link>http://forums.asp.net/thread/1299104.aspx</link><pubDate>Mon, 29 May 2006 07:00:39 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:1299104</guid><dc:creator>dirkpitt</dc:creator><author>dirkpitt</author><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/1299104.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=23&amp;PostID=1299104</wfw:commentRss><description>Im also trying to cast like this....&lt;br /&gt;&lt;br /&gt;ArrayList test = new ArrayList();&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; test = (ArrayList)c.SelectItems();&lt;br /&gt;&lt;br /&gt;which it lets me do, although I have no idea how to get the items out of test still..&lt;br /&gt;</description></item><item><title>Re: Accessing data without the controls</title><link>http://forums.asp.net/thread/1299060.aspx</link><pubDate>Mon, 29 May 2006 05:43:39 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:1299060</guid><dc:creator>dirkpitt</dc:creator><author>dirkpitt</author><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/1299060.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=23&amp;PostID=1299060</wfw:commentRss><description>Thanks for your reply.&lt;br /&gt;&lt;br /&gt;With the code you have just pasted, i get the following error.&lt;br /&gt;&lt;br /&gt;Error&amp;nbsp;&amp;nbsp;&amp;nbsp; 1&amp;nbsp;&amp;nbsp;&amp;nbsp; Cannot implicitly convert type 'System.Collections.IEnumerable' to 'System.Collections.ArrayList'. An explicit conversion exists (are you missing a cast?)&amp;nbsp;&amp;nbsp; &lt;br /&gt;&lt;br /&gt;Cheers&lt;br /&gt;&lt;br /&gt;Dirk&lt;br /&gt;&lt;br /&gt;</description></item><item><title>Re: Accessing data without the controls</title><link>http://forums.asp.net/thread/1298639.aspx</link><pubDate>Sun, 28 May 2006 11:50:09 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:1298639</guid><dc:creator>rumbafum</dc:creator><author>rumbafum</author><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/1298639.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=23&amp;PostID=1298639</wfw:commentRss><description>&lt;p&gt;Guess the method you're using c.SelectItems returns IEnumerable... DataSet doesn't implements IEnumerable that's the problem... (Cannot implicitly convert....)&lt;/p&gt;
&lt;p&gt;You could use an ArrayList to get data&lt;/p&gt;
&lt;p&gt;ArrayList arr = new ArrayList()&lt;/p&gt;
&lt;p&gt;arr = c.SelectItems();&lt;/p&gt;
&lt;p&gt;this should work... &lt;/p&gt;</description></item><item><title>Accessing data without the controls</title><link>http://forums.asp.net/thread/1298597.aspx</link><pubDate>Sun, 28 May 2006 10:21:23 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:1298597</guid><dc:creator>dirkpitt</dc:creator><author>dirkpitt</author><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/1298597.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=23&amp;PostID=1298597</wfw:commentRss><description>Hi all&lt;br /&gt;&lt;br /&gt;I am trying to switch from PSP to ASP and im finding it very frustrating to do anything programatically without usign some of the tools available. For example accessing data without using gridview etc.&lt;br /&gt;&lt;br /&gt;I have spent days trying to figure this out, and read a few books that touch on the fact that its possible without actually explaining how to use the dataset for anything other than viewing data. All i really want to do is stick the data in some variable so that I can then do whatever I please with it.&lt;br /&gt;&lt;br /&gt;Heres an example of something I am trying to work out using the RSStoolkit.&lt;br /&gt;&lt;br /&gt;&lt;span id="intelliTxt"&gt;&lt;pre class="alt2"&gt;public partial class scenario4 : System.Web.UI.Page&lt;br /&gt;{&lt;br /&gt;    protected void Page_Load(object sender, EventArgs e)&lt;br /&gt;    {&lt;br /&gt;        //From the RSStoolkit&lt;br /&gt;        GenericRssChannel c = GenericRssChannel.LoadChannel("http://someRSSfeed");&lt;br /&gt;                &lt;br /&gt;        /*so here i want to use the data in "c" &lt;br /&gt;         example:&lt;br /&gt;         pleaseLetMeGetTheData = c[link];  &lt;br /&gt;         OR however im meant to access this...&lt;br /&gt;         Dataset test = new dataset();&lt;br /&gt;         test = c.SelectItems(); ?? aghhhhhhh &lt;br /&gt;         //cannot implicitly convert blah blah blah.......&lt;br /&gt;         */&lt;br /&gt;&lt;br /&gt;        //Commented because i dont want to use the Gridview&lt;br /&gt;        //GridView1.DataSource = c.SelectItems();&lt;br /&gt;        //GridView1.DataBind();&lt;br /&gt;&lt;br /&gt;    }&lt;br /&gt;    &lt;br /&gt;}&lt;/pre&gt;&lt;/span&gt;&lt;br /&gt;So you can see my problem. Perhaps im just not very smart with this, but any help would be appreciated.&lt;br /&gt;&lt;br /&gt;Cheers&lt;br /&gt;&lt;br /&gt;Dirk&lt;br /&gt;</description></item></channel></rss>