Hello everybody. In order to insert meta tags in a given page I'm using the following C# code in the page load event:
HtmlMeta metaTag = new HtmlMeta();
metaTag.Name = "Keywords";
metaTag.Content = "great newbie code, help wanted";
this.Header.Controls.Add(metaTag);
It works fine, but I need to read the contents from a database and not
just the "great newbie code, help wanted" text
Does anybody have a tip?
Thanks.
Pablo Esquivel
