Click here to Skip to main content
15,890,947 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
Hi,
I am able to get the html code of a webpage,using html agilty pack.
code is this.

C#
var table = doc.DocumentNode.SelectNodes("//table[@id='fixTable']");

for (int i = 0; i < table.Count; i++)
            {
                string text = table[i].InnerHtml;
                //txtblk.Text = doc.Load(text);
               
                var htmlConcat = string.Format("<html><body>{0}" +"</body></html>",text);

}



now, I want to display, this entire table on windows phone screen.
I don't know much about windows phone,
so shall I use Text Block?
i had no luck with it.

Like we do in asp.net, assigning data table to grid, is there any simple way out?
like shall we use any Grid control?

while debugging, if i select text and view it using HTML visualizers, its perfect what i want. but i don't know how to display in windows phone and in what...
Posted
Updated 18-Jan-14 0:02am
v2

1 solution

 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900