So normally, to take something from a webpage you'd use this code
however, the html I'm dealing with is a bit different.
To clear things up, I'm trying to make a client for a web-based skype resolver and I'm left with this html:
The webpage comes up with three results and adds them into 3 separate textboxes, however they all have the same id, which is "skypeip1"..
So my question is how can I break each value up into 3 different textboxes using vb2010?
Code:
textbox1.text = WebBrowser1.Document.All("IDNAME").GetAttribute("value")
however, the html I'm dealing with is a bit different.
To clear things up, I'm trying to make a client for a web-based skype resolver and I'm left with this html:
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="IPADDRESS" /></li>
</ul>
<ul>
<li><label>Host mask</label><input class="required" type="text" id="skypeHostmask" name="skypeHostmask" value="HOST" /></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="IPADDRESS" /></li>
</ul>
<ul>
<li><label>Host mask</label><input class="required" type="text" id="skypeHostmask" name="skypeHostmask" value="HOST" /></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="IPADDRESS" /></li>
</ul>
<ul>
<li><label>Host mask</label><input class="required" type="text" id="skypeHostmask" name="skypeHostmask" value="HOST" /></li>
</ul>
</div>
So my question is how can I break each value up into 3 different textboxes using vb2010?