AWS HTML Producer .Net 4.0
| Submitted On |
April 09, 2003 |
| Updated on |
July 25, 2007 |
| .NET Framework |
1.x |
| Cost |
$135 |
Description
AWS HTML Producer .Net is a leading HTML processing solution for .Net Framework that not only provides advanced HTML template parsing features, but also extracts virtually any data from any web site! Extract the latest stock indices, currency rates, weather, news and more with a few lines of code! See demos on our web site.
Syntax Example
Private Sub Page_Load(ByVal sender As System.Object, _
ByVal e As System.EventArgs) HandlesMyBase.Load
'Declare table processing object
Dim Parser As HTMLProducer.TableProcessor
//Output table
Dim Table As HTMLProducer.TableCells
Parser = New HTMLProducer.TableProcessor()
'Set main properties
Parser.ProcessFile = True
Parser.FileName = "http://www.washingtonpost.com"
Parser.SelectCriterion = _
HTMLProducer.TableProcessor.SelectCriteria.SelectBySearchString
Parser.SearchString = "TODAY'S HIGHLIGHTS"
Parser.CaseSensitive = True
Table = Parser.ProcessTable(False)'don't remove HTML formatting
'Display output table as HTML
'(InfoArea is an usual ASP.Net Literal control)
InfoArea.Text = Table.TableHTMLText
End Sub
Reviews
Submit a review