Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Dim OutString As String = "<html><body><table border=2><tr width=100%><td>Date</td><td>Con Pack</td><td>Region</td><td>Trade</td><td>Duration</td></tr>" [blue]'</table></body></html> [/blue]
'Put the blue phrase at the end of the string.
'Now, populate the rows
For Each r As DataRow in YourDataTable.Rows()
OutString &= "<tr><td>" & r("DateColumn") & "</td>" & _
"<td>" & r("ConPack") & "</td>" & _
"<td>" & r("Region") & "</td>" & _
"<td>" & r("Trade") & "</td>" & _
"<td>" & r("Duration") & "</td></tr>"
Next
OutString &= "</table></body></html>"
WebBrowser1.DocumentText = OutString