How to use meta tags on single pages using asp.net webpages. I'm currently using a layout master page with default meta tags which works across several pages, but I can't seem to find a way to override the meta tags for sub pages of the master file.
On the sub pages I've the following but it does work.
@{
Layout = "~/siteLayout.cshtml";
Page.Title = "Meta Page";
Page.MetaKeywords = "keyword1, keyword2, keyword3";
}
Can anyone please assist or point me in the right direction, thanks you!