Click here to Skip to main content
15,891,607 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
So, I have a html page and, in one node of this HTML, i have one atribute called src and this attribute is a link... how I can get this link ?

What i mean:

HTML
<img border='0' id='image' src='/scripts/image/Telerik.Web.UI.WebResource.axd?type=rca&guid=82ca2bae-12b2-441b-b6fa-56c315c935ae'>


The attribute src is a link, how I can get the link of that ?
I get the src string, but, no the link... to get the src string, i maded this:

VB
If doc.Body.InnerHtml.Contains("image") Then
    MessageBox.Show(doc.GetElementById("image").GetAttribute("src"))
End If


So, the '/scripts/image/Telerik.Web.UI.WebResource.axd?type=rca&amp;guid=82ca2bae-12b2-441b-b6fa-56c315c935ae' is a link...

'/scripts/image/Telerik.Web.UI.WebResource.axd?type=rca&guid=82ca2bae-12b2-441b-b6fa-56c315c935ae'
<- like this, undersantd ? I jsut whant to get this link.... ( the hiperlink )

So, how I can get the link ?
Posted

1 solution

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