ASP.NET MVC2 Master Page - Server side script not rendering, first bracket being escaped
问题 I have a master page which I am using as a template to allow me to define meta tags per page. My master page takes in a model which contains the meta information, here is an example of what I am trying to do the following: <meta name="description" content="<%= Model.description %>" /> <meta name="keywords" content="<%= Model.keywords %>" /> However, when I check the HTML once the page is rendered I get this: <meta name="description" content="<= Model.description %>" /> <meta name="keywords"