我正在使用此meta
标记在用户分享新闻时在Facebook上显示说明。我正在使用ShareThis分享新闻......
<meta property="og:title" content="<%=RSnoti("Titulo")%>"/>
<meta property="og:image" content="http://alsite.com.br/robertoengler/<%=replace(RSnoti("foto"),"../","")%>"/>
<meta property="og:description" content="<%=RSnoti("texto")%>"/>
正如您在此处所见:http://alsite.com.br/robertoengler/noticia2.asp?id=1。
我使用ASP Classic来调用标题,图像和描述,但只有描述显示在内容页面上方
我如何解决这个问题?
答案 0 :(得分:0)
试试这个
<meta property="og:title" content='<%=RSnoti("Titulo")%>'/>
<meta property="og:image" content='http://alsite.com.br/robertoengler/<%=replace(RSnoti("foto"),"../","")%>'/>
<meta property="og:description" content='<%=RSnoti("texto")%>'/>
答案 1 :(得分:0)
content
的内容包含HTML标记。它应该只包含纯文本。所以内容中的第一个引用会污染你的页面。
所以你应该消毒那里的东西。删除所有HTML标记,或将引号等内容更改为"
等实体引用。