473,511 Members | 12,017 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

RSS Newsfeed Consumer in APS.NET

I am trying to create an ASP.NET application that
consumes an RSS Newsfeed from Yahoo News
(http://rss.news.yahoo.com/rss/topstories). I keep
getting the following error message, even though my code
seems corect. In fact, when I drop virtually the same
code into a Windows Forms application using VB.NET and
use a Windows Forms datagrid, I get the xml from the
newsfeed without any problem.

Here is the error message:

"The 'META' start tag on line '1' doesn't match the end
tag of 'HEAD' in file
http://rss.news.yahoo.com/rss/topstories'. Line 1,
position 135."

Here is my code from my ASPX page:

<%@ Import Namespace="System.Data" %>
<%@ Import Namespace="System.Xml" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0
Transitional//EN">
<HTML>
<HEAD>
<title>Yahoo! News Top Stories</title>

<meta name="GENERATOR" content="Microsoft Visual
Studio .NET 7.1">
<meta name="CODE_LANGUAGE" content="Visual Basic .NET
7.1">
<meta name="vs_defaultClientScript" content="JavaScript">
<meta name="vs_targetSchema"
content="http://schemas.microsoft.com/intellisense/ie5">

</HEAD>

<body MS_POSITIONING="GridLayout">

<script language="VB" runat="server">

Private Const YAHOO_RSS_FEED As String
= "http://rss.news.yahoo.com/rss/topstories"

Sub Page_Load(sender as Object, e as EventArgs)

'Cache the top stories for 20 minutes
If Cache("YahooTopStories") Is Nothing then
'Item not in cache, get it manually
Dim dt as DataTable = GetRSSFeed(YAHOO_RSS_FEED)
Cache.Insert("YahooTopStories", dt, Nothing,
DateTime.Now.AddMinutes(20), TimeSpan.Zero)
End If

topStories.DataSource = Cache("YahooTopStories")
topStories.DataBind()
End Sub

Function GetRSSFeed(strURL as String) as DataTable
'Get the XML data
Dim reader as XmlTextReader = New XmlTextReader
(strURL)

'return a new DataSet
Dim ds as DataSet = New DataSet()
ds.ReadXml(reader)
Return ds.Tables(2)
End Function
</script>

<asp:DataGrid runat="server" id="topStories"
AutoGenerateColumns="False"
Font-Name="Arial" Font-Size="10pt"
HeaderStyle-Font-Bold="True"
HeaderStyle-HorizontalAlign="Center"
HeaderStyle-BackColor="Navy" HeaderStyle-
ForeColor="White"
HeaderStyle-Font-Size="15pt"
AlternatingItemStyle-BackColor="#eeeeee">
<Columns>
<asp:TemplateColumn HeaderText="Yahoo News Top
Stories for <%=Today()%>">
<ItemTemplate>
<a href="<%# DataBinder.Eval
(Container.DataItem, "link")%>">
<%# DataBinder.Eval
(Container.DataItem, "title") %>
</a> <!--(<i><%# DataBinder.Eval
(Container.DataItem, "datePosted") %></i>)-->
</ItemTemplate>
</asp:TemplateColumn>
</Columns>
</asp:DataGrid>

</body>
</HTML>

Do you know what I need to change?

Thanks in advance.
Jul 21 '05 #1
0 1156

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

0
7440
by: Debaser | last post by:
I'm getting an IllegalMonitorStateException in trying to implement the above subject. The static declararions made it work, so if this is part of the problem let me know. I think it has something...
7
2355
by: Evan Simpson | last post by:
WEBoggle needs a new game board every three minutes. Boards take an unpredictable (much less than 3min, but non-trivial) amount of time to generate. The system is driven by web requests, and I...
3
3504
by: smith4894 | last post by:
Hello, I have an application that essentially consists of two threads doing their things. One thread is a producer, and pushes bytes (of a struct) into a pipe, and another is a consumer that...
2
4203
by: Ramta | last post by:
Hi all, I am trying to develop a Producer thread that listens for UDP packets on a socket and store then in an ArrayList. The consumer should read data from list and block when no element is...
0
770
by: | last post by:
I am trying to create an ASP.NET application that consumes an RSS Newsfeed from Yahoo News (http://rss.news.yahoo.com/rss/topstories). I keep getting the following error message, even though my...
0
1388
by: Nogusta123 | last post by:
My web service has a single method called "CheckEligibility". This method can be used to check a person's eligibility for multiple products. Each product has different data requiements so each...
4
11155
by: mps | last post by:
It seems to me that the MSDN code for synchronizing a producer and consumer thread at http://msdn2.microsoft.com/en-us/library/yy12yx1f.aspx is completely wrong. There is no reason to assume that...
0
1246
by: =?Utf-8?B?TWFyYyBXb29sZnNvbg==?= | last post by:
Hello, I can't seem to find any information on how best to implement multiple connections on a consumer web part and was wondering if anyone could point me in the right direction. I have...
10
4396
by: George Sakkis | last post by:
I'd like some feedback on a solution to a variant of the producer- consumer problem. My first few attempts turned out to deadlock occasionally; this one seems to be deadlock-free so far but I can't...
0
7251
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
7148
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
7367
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
1
7089
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
7517
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
5673
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
0
3230
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The...
0
3217
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
0
1581
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated ...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.