Windows phone 8 使用c从Url获取所需数据#

Windows phone 8 使用c从Url获取所需数据#,windows-phone-8,Windows Phone 8,我有以下网址 在这个url中,数据是 <table border='0' cellpadding='3' bgcolor="#CCCCCC" class="hostinfo_title2" width='100%' align="center"> <tr align='center' bgcolor="#ffffff"> <td width='26%' class="hostinfo_title3">Arc

我有以下网址

在这个url中,数据是

<table border='0' cellpadding='3' bgcolor="#CCCCCC" class="hostinfo_title2"  width='100%' align="center">
            <tr align='center' bgcolor="#ffffff">
              <td width='26%' class="hostinfo_title3">Archive Url</td>
            </tr>

            <tr bgcolor="#ffffff">
              <td height="25" align="center">http://www.toucheradio.com/prgramdetails/20141027_ramesh_ib.mp3</td>

            </tr>
                          </table>

存档Url
http://www.toucheradio.com/prgramdetails/20141027_ramesh_ib.mp3
从这里我想得到url(即)

有谁能帮我找到这个网址吗?我可以下载这个网址,但不知道如何找到mp3的网址


许多银行提前从URL下载HTML,使用加载HTML并获取第一个TD元素的内容。相同的示例。

我使用了上述代码,但DocumentElement中出现错误。HtmlDocument doc=新的HtmlDocument();doc.Load(“file.htm”);foreach(doc.DocumentElement.SelectNodes(“//a[@href”]){HtmlAttribute att=link[“href”];att.Value=FixLink(att);}doc.Save(“file.htm”);在搜索中,我已将DocumentElement更改为DocumentNodes。但在这种情况下,我在SelectNodes中遇到错误。请帮助我,我从很多天起就在处理此问题。我已通过webclient下载了url。您能告诉我如何从下载的数据中获取mp3 url。ManyThanks。