HomeCommunityControl GalleryContent ManagementAWS HTML Producer .Net 4.0

AWS HTML Producer .Net 4.0



Submit a Review

239 Downloads

15,507 Views


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