I'm trying to make a Windows phone app which takes data from an HTML page
HTML example
<span id="ctl00_ContentPlaceHolderPrincipale_ListViewEventi_ctrl0_dataLabel" class="dataNotizia">27 dicembre 2013</span>
<br />
<span id="ctl00_ContentPlaceHolderPrincipale_ListViewEventi_ctrl0_titoloLabel" class="titoloNotizia">FOCUS: ANCHE I VIP AL FREDDO COME I POVERI</span>
<a id="ctl00_ContentPlaceHolderPrincipale_ListViewEventi_ctrl0_LinkButton1" class="linkSMS" href="javascript:WebForm_DoPostBackWithOptions(new WebForm_PostBackOptions("ctl00$ContentPlaceHolderPrincipale$ListViewEventi$ctrl0$LinkButton1", "", false, "", "sms_vedi.aspx?evento=FOCUS: ANCHE I VIP AL FREDDO COME I POVERI&data=27/12/2013", false, true))">Vedi tutti gli SMS della puntata</a>
<br />
<br />
For example I want to show a list which shows the text in the class titoloNotizia
. How can I do this?
You can parse HTML with the HTML Agility Pack.