Get Meta Tag information from a web Page : for SEO and spider
Techniques
This category is aimed to help programmers in order to find and share helpfull techniques, source code and more stuff.
Techniques / Web tools : DypsMetaGrabber

Documentation: DypsMetaGrabber object reference <
Previous Page
- Grab Meta Tag from any web page :
This short example will help you to learn how you can grab Meta Tag information on a Web page on the fly thanks to DypsMetaGrabber .
<% set grab = server.createObject("DypsMetaGrabber.MetaParser") grab.page_url ="http://dypso.free.fr" 'Get the page content and parse it grab.getMeta() 'Display Page Title Response.write "Title : " & grab.Page_title & "<br>" 'Display the meta description of the web Page Response.write "Description : " & grab.Page_description & "<br>" 'Display the meta KeyWords of the web page Response.write "Title : " & grab.Page_KeyWords & "<br>" %>
Documentation: DypsMetaGrabber object reference <
Previous Page