To explain:
After submitting an entry, this website gives three results. However, all of the results fall under the SAME html ID, so I can't figure out how to extract them all. I was thinking the HTMLAgilityPack would come in handy here, but I can quite figure out how to put together the pieces. Here is the HTML code, all comments are appreciated!:
Basically. I need all three values from ID="skypeip1" somehow extracted into three different text boxes..
After submitting an entry, this website gives three results. However, all of the results fall under the SAME html ID, so I can't figure out how to extract them all. I was thinking the HTMLAgilityPack would come in handy here, but I can quite figure out how to put together the pieces. Here is the HTML code, all comments are appreciated!:
Code:
<div class="_100">
<label for="textfield">Result #0</label>
<ul>
<li><label>IP Address</label><input class="required" type="text" id="skypeip1" name="skypeip1" value="168.62.23.92" /></li>
</ul>
<ul>
<li><label>Host mask</label><input class="required" type="text" id="skypeHostmask" name="skypeHostmask" value="Doesn't matter" /></li>
</ul>
</div>
<div class="_100">
<label for="textfield">Result #1</label>
<ul>
<li><label>IP Address</label><input class="required" type="text" id="skypeip1" name="skypeip1" value="172.250.116.169" /></li>
</ul>
<ul>
<li><label>Host mask</label><input class="required" type="text" id="skypeHostmask" name="skypeHostmask" value="Doesn't matter" /></li>
</ul>
</div>
<div class="_100">
<label for="textfield">Result #2</label>
<ul>
<li><label>IP Address</label><input class="required" type="text" id="skypeip1" name="skypeip1" value="98.149.175.129" /></li>
</ul>
<ul>
<li><label>Host mask</label><input class="required" type="text" id="skypeHostmask" name="skypeHostmask" value="Doesn't matter" /></li>
</ul>
</div>
Basically. I need all three values from ID="skypeip1" somehow extracted into three different text boxes..