Accessing a html page that is in a tab of a html page using Windows Phone 8 app

折月煮酒 提交于 2019-12-25 10:18:45

问题


I am programming in C# and for Windows Phone 8. I am currently trying to access a html page (lets say an students subject grades[page 2]).

This html page is referenced by a href tag that is placed within another html page (the students home screen after log in [page 1]), which i have accessed using a HttpClient object with the help of a POSTAsync function.

I need to know a way by which i can programmatically click this specific link (from page 1 to page 2).

I know how to access the href content using the HTMLAgilityPack, but i don't know how to load "THAT"(page 2) HTML page which is specific and different to every individual. Thank you in advance.


回答1:


If you can access the href with the HTMLAgilityPack than you can simply call another POSTAsync with the url being the href link.



来源:https://stackoverflow.com/questions/29631680/accessing-a-html-page-that-is-in-a-tab-of-a-html-page-using-windows-phone-8-app

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!