About
Digital Colony is the technical web site for Michael Allen Smith of Seattle.
Tag Archives: meta
Add META keywords and Description in ASP.NET
Here is the syntax for programmatically adding META tags to an ASP.NET 2.0 page. HtmlMeta metaDesc = new HtmlMeta(); metaDesc.Name = “description”; metaDesc.Content = “Tips on roasting coffee at home”; Page.Header.Controls.Add(metaDesc); HtmlMeta metaKey = new HtmlMeta(); metaKey.Name = “keywords”; metaKey.Content … Continue reading →
