Tengo una tabla html
<table border=0 width=100%>
<tr class=headerbg>
<th width=5%>
No
</th>
<th width=30%>
Name
</th>
<th width=20%>
Department or Division
</th>
<th width=25%>
Email
</th>
<th width=20%>
Staff/Student
</th>
</tr>
<tr class=bg2>
<td>
1
</td>
<td>
<strong><a class=searchLink2 href=tel_search.php?fore=Dave&sur=Rumber>Dave Rumber</a></strong>
</td>
<td>
Medical School
</td>
<td>
<a class=searchLink2 href=mailto:Dave.Rumber@Home.com>Dave.Rumber@Home.com</a>
</td>
<td>
Student
</td>
</tr>
</table>
A veces habrá más de una fila de resultados de personas. Me gustaría poder revisar cada fila y obtener el nombre y la información del correo electrónico y hacer otro procesamiento. Coloque los datos en una cuadrícula de datos, y posiblemente en una base de datos.
Supongo que mi pregunta es ¿cómo hago esto?
string table = GetContents(buffer);
table = table.Replace( , );
table = table.Replace(&, &);
XElement inters = XElement.Parse(table);
Puedo ponerlo en un XElement pero no estoy muy seguro de a dónde ir.
¡Gracias!