Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

My question is: How can I add meta tag from my view or partial view? Basically I want to, from the view, write a meta tag, and I want it to be displayed in the header. Is it possible?

Thank you H

share|improve this question

1 Answer

up vote 4 down vote accepted

You can use sections to do this.

In you layout page you need to define the section:

<head>
    @RenderSection("Head", required: false)
</head>

This section can then be used in any page that uses this layout page:

@section Head {
    <meta ... >
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.