Click here to Skip to main content
15,881,381 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: Text with Audio Pin
Member 104440588-Jan-20 19:47
Member 104440588-Jan-20 19:47 
QuestionName of the software that can package websites to install on smartphones: android and iphone ? Pin
Member 24584677-Jan-20 17:34
Member 24584677-Jan-20 17:34 
GeneralRe: Name of the software that can package websites to install on smartphones: android and iphone ? Pin
Richard MacCutchan7-Jan-20 21:21
mveRichard MacCutchan7-Jan-20 21:21 
GeneralRe: Name of the software that can package websites to install on smartphones: android and iphone ? Pin
Member 24584679-Jan-20 19:44
Member 24584679-Jan-20 19:44 
GeneralRe: Name of the software that can package websites to install on smartphones: android and iphone ? Pin
Richard MacCutchan9-Jan-20 23:08
mveRichard MacCutchan9-Jan-20 23:08 
QuestionScrape with htmlagilityapck question Pin
Member 17532506-Jan-20 12:10
Member 17532506-Jan-20 12:10 
SuggestionRe: Scrape with htmlagilityapck question Pin
ZurdoDev7-Jan-20 9:04
professionalZurdoDev7-Jan-20 9:04 
GeneralRe: Scrape with htmlagilityapck question Pin
Member 17532507-Jan-20 9:57
Member 17532507-Jan-20 9:57 
Thank You for the reply. Here is my code.
' Get all tables in the document
Dim tables As HtmlAgilityPack.HtmlNodeCollection = main.DocumentNode.SelectNodes("//table")
' Iterate all rows in the first table

Dim rows As HtmlAgilityPack.HtmlNodeCollection = main.DocumentNode.SelectNodes("//table[@id='workorders']//tr")
' Dim rows As HtmlAgilityPack.HtmlNodeCollection = main.DocumentNode.SelectNodes("tr")

' Iterate all rows in the first table
For k = 0 To rows.Count - 1
' Iterate all columns in this row
Dim cols As HtmlAgilityPack.HtmlNodeCollection = rows(k).SelectNodes("th|td")
' Dim cols As HtmlAgilityPack.HtmlNodeCollection = rows(k).SelectNodes("tr")
If cols IsNot Nothing Then
For j = 0 To cols.Count - 1
' Get the value of the column and print it
Dim value As String = cols(j).InnerText
If value = "Project Name/Work Order" Then
Foundwork = True
End If
Next
End If
Next


Here is the web source
div class="panel panel-primary" style="margin-top:10px;">

Work Opportunities Available






No available work opportunities found.


I want to check when


Project Name/Work Order Date Time Location Pay Rate Pay Type Tech Actions


QuestionRe: Scrape with htmlagilityapck question Pin
ZurdoDev11-Jan-20 8:55
professionalZurdoDev11-Jan-20 8:55 
AnswerRe: Scrape with htmlagilityapck question Pin
Member 175325011-Jan-20 9:36
Member 175325011-Jan-20 9:36 
QuestionAssigning data from sql database to a chart C# and entity framework Pin
Member 146959565-Jan-20 22:07
Member 146959565-Jan-20 22:07 
AnswerRe: Assigning data from sql database to a chart C# and entity framework Pin
Richard Deeming7-Jan-20 9:08
mveRichard Deeming7-Jan-20 9:08 
QuestionCan i use timer control without use java sicrpt? Pin
Nowiglah4-Jan-20 6:26
Nowiglah4-Jan-20 6:26 
AnswerRe: Can i use timer control without use java sicrpt? Pin
Eddy Vluggen4-Jan-20 8:36
professionalEddy Vluggen4-Jan-20 8:36 
QuestionTrying to open a pdf file in a new Tab on Chrome browser - not happening Pin
simpledeveloper3-Jan-20 5:59
simpledeveloper3-Jan-20 5:59 
AnswerRe: Trying to open a pdf file in a new Tab on Chrome browser - not happening Pin
ZurdoDev3-Jan-20 6:29
professionalZurdoDev3-Jan-20 6:29 
GeneralRe: Trying to open a pdf file in a new Tab on Chrome browser - not happening Pin
simpledeveloper3-Jan-20 6:50
simpledeveloper3-Jan-20 6:50 
GeneralRe: Trying to open a pdf file in a new Tab on Chrome browser - not happening Pin
ZurdoDev3-Jan-20 6:52
professionalZurdoDev3-Jan-20 6:52 
GeneralRe: Trying to open a pdf file in a new Tab on Chrome browser - not happening Pin
simpledeveloper3-Jan-20 7:01
simpledeveloper3-Jan-20 7:01 
GeneralRe: Trying to open a pdf file in a new Tab on Chrome browser - not happening Pin
ZurdoDev3-Jan-20 7:06
professionalZurdoDev3-Jan-20 7:06 
GeneralRe: Trying to open a pdf file in a new Tab on Chrome browser - not happening Pin
simpledeveloper3-Jan-20 7:34
simpledeveloper3-Jan-20 7:34 
GeneralRe: Trying to open a pdf file in a new Tab on Chrome browser - not happening Pin
ZurdoDev3-Jan-20 7:46
professionalZurdoDev3-Jan-20 7:46 
GeneralRe: Trying to open a pdf file in a new Tab on Chrome browser - not happening Pin
simpledeveloper3-Jan-20 7:56
simpledeveloper3-Jan-20 7:56 
GeneralRe: Trying to open a pdf file in a new Tab on Chrome browser - not happening Pin
simpledeveloper3-Jan-20 9:08
simpledeveloper3-Jan-20 9:08 
QuestionHow I can insert data into gridview without use data source??? Pin
Nowiglah3-Jan-20 4:34
Nowiglah3-Jan-20 4:34 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.