Ask Your Question
2

What is the method to retrieve the ultimate page title in ASP.NET MVC?

asked 2023-06-02 09:19:28 +0000

david gravatar image

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
3

answered 2023-06-02 09:35:01 +0000

lalupa gravatar image

The ultimate page title can be retrieved in ASP.NET MVC by overriding the OnResultExecuting method in the controller and setting the title of the view bag. The view can then access the view bag and display the title in the HTML head section. Here is an example:

public class MyController : Controller
{
    protected override void OnResultExecuting(ResultExecutingContext filterContext)
    {
        // Get the current page's title
        string pageTitle = GetPageTitle();

        // Set the title in the ViewBag
        ViewBag.PageTitle = pageTitle;

        base.OnResultExecuting(filterContext);
    }
}

// In the view, access the title using the ViewBag variable
<head>
    <title>@ViewBag.PageTitle</title>
</head>

Note: GetPageTitle is a custom method that retrieves and formats the title based on the controller and action being executed.

edit flag offensive delete link more

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account. This space is reserved only for answers. If you would like to engage in a discussion, please instead post a comment under the question or an answer that you would like to discuss

Add Answer


Question Tools

Stats

Asked: 2023-06-02 09:19:28 +0000

Seen: 2 times

Last updated: Jun 02 '23