I should have mentioned ... that is the code that is presently throwing the exception.
Solved my problem, I neglected to change the GetPublishedArticlesByCategory stored procedure!
How do I go about retrieving the keyword content from the database?
... I've discovered that System.Web.UI.HtmlControls permits me to add the meta tag as illustrated below.
Code:
HtmlMeta meta = newHtmlMeta();
meta.Name = "keywords";
meta.Content = article.Keywords;
this.Header.Controls.Add(meta);
I'll use this approach to take the title and abstract fields and create title and description meta tags.
I remain open to better/improved suggestions.