asp.net mvc 5 - Add Meta tag in View page using MVC-5 -
I have two meta tags in the _Layout.cshtml master page and now I want to add a meta tag to someone in the CSSAML view page .
And I also try with this code
put _layout.cshtml in master page Someone Shtml such as But the success was not found. Also try the addition of the meta tag jquery but did not work properly. This should work. Here my master page is here Results @RenderSection ("Metatag", incorrect);
@ section metatags {& lt; Meta ... /> }
_Layout.cshtml
> @RenderSection ("Metatags", false) & lt; Title & gt; My asp.net application & lt; / Title & gt; & Lt; / Head & gt; & Lt; Body & gt; @RenderBody () & lt; / Body & gt; & Lt; / Html & gt;
index.cshtml file
section metatags {& lt; Meta name = "test" content = "test is" /> & Lt; Meta name = "test2" content = "test" /> } & Lt; Div & gt; Page content & lt; / Div & gt;
& lt; Html & gt; & Lt; Top & gt; & Lt; Meta charset = "UTF-8" & gt; & Lt; Meta name = "test" content = "test" & gt; & Lt; Meta name = "test2" content = "test" & gt; & Lt; Title & gt; My asp.net application & lt; / Title & gt; & Lt; / Head & gt; & Lt; Body & gt; & Lt; Div & gt; Page content & lt; / Div & gt; & Lt; / Body & gt; & Lt; / Html & gt;
Comments
Post a Comment