首页 > 代码库 > .NET 在meta标签中使用表达式设置页面的关键字

.NET 在meta标签中使用表达式设置页面的关键字

在aspx文件中 给meta标签的属性复制是不能直接使用 表达式的

错误的写法:

<meta name="keywords" content="<%=newsType.Nt_KeyWords %>"/>  无法解析

正确的写法:

<meta name="keywords" content=<%="\"" +newsType.Nt_KeyWords %>"/><meta name="description" content=<%="\"" +newsType.Nt_Description %>" />

 

.NET 在meta标签中使用表达式设置页面的关键字