rss feed question

  • Thread starter Thread starter Aaron
  • Start date Start date
A

Aaron

Is there a way to limit the number of rss item rendered by the script.

For example the MSDN feed has over 30 items (posts). I would like my
script to render only 10 items.
http://msdn.microsoft.com/rss.xml

<asp:DataGrid runat="server" PageSize="12" AllowPaging="True">

I tried this but it didn't work.

Aaron
 
Aaron,

You would have to limit the number of records yourself. You will have
to remove the items from the data set/grid manually. As far as I know, MSDN
doesn't have a way in the RSS feed to limit the number of records retrieved.

Hope this helps.
 
how can i manually remove the items?

----------
Aaron,

You would have to limit the number of records yourself. You will have
to remove the items from the data set/grid manually. As far as I know, MSDN
doesn't have a way in the RSS feed to limit the number of records retrieved.

Hope this helps.
 
Back
Top