I'm trying to make a meta tag in my view based on data in my model...my view code looks like this:
<meta name="description" content="<%=Html.Encode(Model.MetaDescription) %>" />
But my output looks like this:
meta name="description" content="<%=Html.Encode(Model.MetaDescription) %>" />
What the heck am I doing wrong?