Hi Jeff, please disregard my reply prior to this.
Thank you. But I got an error: I follow your code and I converted it to vb coding. Please check below my sample html code
Data at the root level is invalid. Line 1, position 1.
Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.
Exception Details: System.Xml.XmlException: Data at the root level is invalid. Line 1, position 1.
==========================================================================================================
Below are my sample html source
SAMPLE HTML SOURCE (Online.txt):
<META HTTP-EQUIV="Content-Type" CONTENT="text/html;charset=utf-8">
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head>
<title>Current Payment</title>
<style >
body {
font-family: Verdana,arial,helvetica,sans-serif;
font-size: 10px;
color: Black;
text-decoration : none;
}
.sectionLabel
{
font-family: Verdana,arial,helvetica,sans-serif;
font-size: 12px;
font-weight: bold;
color: Navy;
text-decoration : none;
}
.fieldLabel
{
font-family: Verdana,arial,helvetica,sans-serif;
font-size: 10px;
font-weight: bold;
color: Green;
text-decoration : none;
}
.fieldValue
{
font-family: Verdana,arial,helvetica,sans-serif;
font-size: 10px;
font-weight: bold;
color: #FF0099;
text-decoration : none;
}
</style>
</head>
<body>
<table width="100%">
<tr>
</td>
<td class ="fieldlabel" style='width; 150px; height: 13px;'valign='top'>
Your Payment:
</td>
<td class="fieldValue" style=height 13px'>
300.00
<td>
<td class="fieldLabel" style='width': 150px;height: 13px;'valign='top'>
Your Discount:
</td>
<td class="fieldvalue" style='height': 13px'>
0.05
</td>
</tr>
</table>
</body>
</html>
=========================================================================================================