<head runat="server" id="mainHead">
//Find the Head Tag in Master Page HtmlHead hdMain = (HtmlHead)Page.Master.FindControl("mainHead"); HtmlMeta htmMeta = new HtmlMeta(); htmMeta.Attributes.Add("name","description"); htmMeta.Attributes.Add("content", "This is content"); //Add Meta Tag to Head hdMain.Controls.Add(htmMeta); //Adding keyword Meta Tag to Head Section HtmlMeta hm2 = new HtmlMeta(); hm2.Attributes.Add("name", "keywords"); hm2.Attributes.Add("content", "Here you can pass your keywords"); hdMain.Controls.Add(hm2);