1

How to convert html table to datagridview in C#? Let me know any reference for conversion.

Here is Html table.

<table>
   
    <tr>
        <td>Living Room</td>
    </tr>

    <tr>
        <td>Size</td>
        <td>Quantity</td>
        <td>Amount</td>
        <td>Duration</td>
    </tr>
    <tr>
        <td>1</td>
        <td>1</td>
        <td>1</td>
        <td>1</td>
    </tr>
    <tr>
        <td>2</td>
        <td>2</td>
        <td>2</td>
        <td>2</td>
    </tr>  
         
</table>
Bassie
  • 9,529
  • 8
  • 68
  • 159
Than Naing Oo
  • 121
  • 1
  • 4
  • Possible duplicate of [Import data from HTML table to DataTable in C#](https://stackoverflow.com/questions/18090626/import-data-from-html-table-to-datatable-in-c-sharp) – Imran Ali Khan Nov 08 '17 at 06:33

0 Answers0