VN:F [1.9.22_1171]
Rating: 0.0/10 (0 votes cast)
Add meta-data dynamically to your page by adding a HtmlMeta control to your Header. In this example I dynamically add a keyword string to the page.
string keyWords = "metatags, html, dynamic, generate";
HtmlMeta keywords = new HtmlMeta();
keywords.Name = "keywords";
keywords.Content = keyWords;
Page.Header.Controls.Add(keywords);
You can do the same for other meta-data like description.
VN:F [1.9.22_1171]
Rating: 0.0/10 (0 votes cast)
Author: Pieter Brinkman (123 Posts)Pieter is Technical Marketing Manager for Sitecore Netherlands and owner of Gaatverweg.nl. He has more than ten years experience with software developing in multiple programming languages and with different Content Management Systems. Before joining Sitecore Pieter was a lead developer for multiple Sitecore and .Net projects, he joined Sitecore in 2011 as an Solution Architect in The Netherlands, after two years as an Solution Architect he joined the Technical Marketing department. In the role as Techinical Marketing Manager he is responsible for the Global MVP program and the Sitecore technical branding strategy.
You can follow Pieter on twitter: @pieterbrink123 or Google+
Related posts
One Response to Add meta data (keywords, description) dynamicly
Nice post! Might come in handy some times.