Facebook“点赞”按钮 - ASPX 母版页

发布于 2024-08-31 11:17:03 字数 44 浏览 2 评论 0原文

如何向我的母版页添加 Facebook“喜欢”按钮,每个页面是否需要不同?

How do I add a FaceBook 'like' button to my master pages, does it need to be different for each page?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

九厘米的零° 2024-09-07 11:17:03

在此处使用 Facebook Like 按钮生成器:

Facebook Like 按钮生成器

粘贴生成的 iframe 代码进入您的母版页。如果您保持原样,它会“喜欢”您的网站,而不是特定页面。

要“喜欢”各个页面,您可以使用生成的代码并查找如下部分:

src="http://www.facebook.com/plugins/like.php?href=mysite.com&

将其修改为:

src="http://www.facebook.com/plugins/like.php?href=<%=Request.Url.ToString() %>&

这应该可以“喜欢”每个特定页面。

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:

src="http://www.facebook.com/plugins/like.php?href=mysite.com&

Modify that to read:

src="http://www.facebook.com/plugins/like.php?href=<%=Request.Url.ToString() %>&

And that should work to 'like' each specific page.

橘和柠 2024-09-07 11:17:03

您还应该动态添加生成的 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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文