Hi friends
I have tried for days to get the Country Names of the following HTML Page below, But how is it possible USING HTTP WEBREQUEST?
This is the HTML PAGE:
I have marked the Names in Red Color.
So the Names are:
The Country Names are located below the class name <li class"country">.
I have used any HTTPWEBREQUEST method I know of, but I simply cant get all of them. So if this can be done using HTTPWEBREQUEST then I prefer it a lot more than Webbrowser control! Hoping to get this solved, thanks a lot !
I have tried for days to get the Country Names of the following HTML Page below, But how is it possible USING HTTP WEBREQUEST?
This is the HTML PAGE:
Code:
<li class='anon'>
<ul>
<li class="home">
<a href="ADD-WEBPAGE-LINK" alt="wepage" /></a>
</li>
<li class="user">
<a>Anonymous</a>
</li>
<li class="country">
Anonymous
</li>
<li class="review-item">Dec 10, 2013</li>
<li class="lesson">
</li>
</ul>
</li>
<li ''>
<ul>
<li class="home">
<a href="ADD-WEBPAGE-LINK" alt="wepage" /></a>
</li>
<li class="user">
<a href="ADD-WEBPAGE-LINK" alt="wepage" /></a>
</li>
<li class="country">
United States
</li>
<li class="review-item">Dec 11, 2013</li>
<li class="lesson">
<a href="ADD-WEBPAGE-LINK" alt="wepage" /></a>
</li>
</ul>
</li>
<li class='anon'>
<ul>
<li class="home">
<a href="ADD-WEBPAGE-LINK" alt="wepage" /></a>
</li>
<li class="user">
<a>Anonymous</a>
</li>
<li class="country">
Anonymous
</li>
<li class="review-item">Dec 10, 2013</li>
<li class="lesson">
</li>
</ul>
</li>
<li ''>
<ul>
<li class="home">
<a href="ADD-WEBPAGE-LINK" alt="wepage" /></a>
</li>
<li class="user">
<a href="ADD-WEBPAGE-LINK" alt="wepage" /></a>
</li>
<li class="country">
Bosnia Herzegovina
</li>
<li class="review-item">Dec 10, 2013</li>
<li class="lesson">
I have marked the Names in Red Color.
So the Names are:
- Anonymous
- United States
- Anonymous
- Bosnia Herzegovina
The Country Names are located below the class name <li class"country">.
I have used any HTTPWEBREQUEST method I know of, but I simply cant get all of them. So if this can be done using HTTPWEBREQUEST then I prefer it a lot more than Webbrowser control! Hoping to get this solved, thanks a lot !