2
I am developing an application with Xamarin to make login in a web account using HTTPWebRequest
and filter relevant site information to an app.
I’ve already developed the part of doing login, now I need to filter the HTML I have to return.
I need to extract from HTML the information contained in Monday’s top tag <table>
HTML, someone would know how to do that?
The great difficulty I have is that tags has not ID so I can’t use this.
the html code of the page I put here for anyone who wants to copy and help me. this html is returned in the Response string.
http://notepad.cc/share/hvptGOlmZQ
need the YYYY and XXXX information contained in the html Tables..
You can use the Html Agility Pack. According to this article from Xamarin’s blog, he can do this. About the tags have not Ids, it is possible to extract information from tag through the class or name, it will depend on the HTML structure.
– stderr
I’m trying to use it but it doesn’t seem to be easy as everyone says, actually I don’t find a useful tutorial so far...
– user3896400
Edith the question and put the HTML you have. Don’t forget to post what information you want to extract.
– stderr
this is the important part of html I need to remove.. I need to read the values of XXXXX and YYYY
– user3896400