1
Reply

Read HTML Table in c# without HTMLagility pack

Ask a question
mohan

mohan

9y
8.5k
1

I am using Windows app to read a HTML table which in format

<table style="width:100%"> <tr> <th>Firstname</th> <th>Lastname</th> <th>Points</th> </tr> <tr> <td>Eve</td> <td>Jackson</td> <td>94</td> </tr>

i am able to read values by tr or td,but i am not able to read second tr value as per corresponding first tr heading(eg first name/eve) here.how can i achieve this.any suggestions welcome please


Answers (1)