data outside the html tag

bcm

Well-known member
Joined
Aug 13, 2007
Messages
56
Programming Experience
Beginner
how to retrive data outside the html tag using vb.net
 
Could you possibly be a bit more specific about what your trying to grab from where?

If your wanting to capture things between/around HTML tags you'll likely be looking to use Regular Expressions.

I guess that given a string of HTML: "<HTML>GET THIS</HTML>", you would want to get the "GET THIS" part?

If you can clear up the question, Im sure we can help!
 
Yes I want to retrive the 'GET THIS' part of the HTML data.
Also the html tags contains an image which fails to load, I want to remove that image. The HTML data is as follows:
<tr align="center">
<td><a href='http://www.cric8.com' target='_new'><img src="images/small_top_left2.gif" width="289" height="59" border='0'></a></td>
</tr>
 
Back
Top