Snapshot and thumnail of web page
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

Sample : How to get meta tag information from any web page >
Next Page
- Meta Tag Grabber component :
Meta Tags are placed in the
of a webpage as part of the HTML code. Search engine "Spiders" use the information in Meta Tags to index webpages. The use of Meta Tags is a key to achieving higher search engine placement and is an important part of SEO (Search Engine Optimization) strategy for bringing traffic to a website.
DypsMetaGrabber is a component aimed to capture "Title", "Description", "Keywords" and "Robots" (and more...) Meta tag content from any webpage.
DypsMetaGrabber is a COM object involved to give to all developpers an specific way to capture and analyze Meta Tags in their application.
This component deals with 1 simple object wich is : Meta Parser interface.
Meta Parser Object :
- Properties
- Page_Title : This property let you retrieve the content of the <TITLE> tag of a web page.
- Page_Description : This property let you retrieve the description of a web page from of the <META> tag of a web page.
- Page_KeyWords : This property let you retrieve the keywords used for a web page from of the <META> tag of a web page.
- Page_HTMLContent : This property let you retrieve the HTML content of a web page.
- Methodes
- GetMeta() as String: This method let you get the content of a web page and parse it in order to get the <META> tags.
Sample : How to get meta tag information from any web page >
Next Page