Thank you for the reply.
I do it now(receiving the entire Html from which I parse and extract the <META> tags).
May be is there the method to get only meta tags from URL ?
pomorin
ASKER
Thank you for the reply.
I do it now(receiving the entire Html from which I parse and extract the <META> tags).
May be is there the method to get only meta tags from URL ?
Gary Davis
If the HTML is a valid XML document, you could load it into an XmlDocument from the string and use an xpath query to easily locate the META tags. However, most HTML is full of bugs, mismatched tags, etc (due to forgiving browsers) so the way you are doing it is probably sufficient (scanning the response string for the META tags).
I do it now(receiving the entire Html from which I parse and extract the <META> tags).
May be is there the method to get only meta tags from URL ?