Click here to Skip to main content
15,884,425 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi please look that image. I want to get "%67" data using Web Browser. How can i get this data?
Posted

1 solution

Use jQuery and traverse the DOM accordingly. Google "jquery dom traverse tutorials" for more info.
 
Share this answer
 
Comments
okanarslan20 5-Jun-15 4:08am    
I dont want to use jQuery. I want to this code " If UCase(TblElement.TagName.ToString).Contains("TD") Then
MsgBox(TblElement.InnerText)
End If"

but there are a lot of message box. I want to one msgbox about %67
F-ES Sitecore 5-Jun-15 4:16am    
You'll just have to work out how you define the element you're looking for, then navigate through the DOM to find it. ie is it always going to be the 3rd column of the second row? If so get the table, go through the child tr elements until you get the second, then go through the tds until you get the third. You have given almost no information so it's hard to give any specific advice.
okanarslan20 5-Jun-15 4:17am    
ok thank you very much

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900