I am still on .net 3.5 but put this in Page_Load and it will do what you need:
HtmlMeta keywords = new HtmlMeta();
keywords.Name = "keywords";
keywords.Content = "one two trhee;
Header.Controls.Add(keywords);
PS: the example is for the keywords tag but the result is the same.