I am developing MVC application. When I run the application I can see the title on the tab of browser as
Index - My ASP.NET MVC Application.
I want to change it.
I have used the <title> my page</title>
but its not working.
How to set it ?
In your view, make sure you have this:
@{
ViewBag.Title = "My Page";
}
In Views\Shared\_Layout.cshtml
, make sure this is there:
<title>@ViewBag.Title</title>
Change the Views\Shared_Layout.cshtml. Generally it comes with
<title>@ViewBag.Title - My ASP.Net MVC application</title>
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With