Facebook“点赞”按钮 - ASPX 母版页
如何向我的母版页添加 Facebook“喜欢”按钮,每个页面是否需要不同?
How do I add a FaceBook 'like' button to my master pages, does it need to be different for each page?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在此处使用 Facebook Like 按钮生成器:
Facebook Like 按钮生成器
粘贴生成的 iframe 代码进入您的母版页。如果您保持原样,它会“喜欢”您的网站,而不是特定页面。
要“喜欢”各个页面,您可以使用生成的代码并查找如下部分:
将其修改为:
这应该可以“喜欢”每个特定页面。
Use the Facebook Like Button generator here:
Facebook Like Button Generator
Paste the generated iframe code into your master page. If you leave it as is it will 'like' your site, not specific pages.
To 'like' the individual pages you can take the generated code and look for a section like this:
Modify that to read:
And that should work to 'like' each specific page.
您还应该动态添加生成的 facebook like 按钮的 META 属性:在后面的代码中使用
HtmlGenericControl
。我写了一篇完整的文章,介绍如何在使用母版页时添加类似 ASP.NET 的按钮: 链接文本You should also add the META property of the generated facebook like button dynamically: use a
HtmlGenericControl
in the code behind. I wrote a full article how to add an asp.net like button while using master pages : link text