I need to place unique description and keywords meta tags to each page. Tried this. But its not clicking.
@{ ViewBag.Title = \"Title\"; ViewBag.Descr
In the layout you could define a section:
... @RenderSection("metas")
and in view:
@section metas { ... }
or in the layout:
...
and in the view:
@{ ViewBag.Title = "Title"; ViewBag.Description = "Test"; ViewBag.Keywords = "Test1, Test2, Test3"; }