I have two meta tag in _Layout.cshtml master page and now i want to add meta tags in someone.cshtml view page.
and i also try with this code
put in _layout.cshtml master page @RenderSection("metatags",false);
put in someone.cshtml like @section metatags { <meta ... /> }
but not get success.
and also try with add meta tag jquery but not worked fine.
@RenderSection
and@section
work for me. – Instigate