我想知道如何在 VB.NET winforms 应用程序中添加 Like 按钮。我创建了包含 iframe 的 index.html 来调用 Facebook Like 按钮 现在我使用 WebBrowser Control 来显示 Facebook Like 按钮。它出现在我的表单中,可以使用 Facebook 帐户登录,问题是 Like Count 没有增加,请帮助我!!!
这是我使用的示例代码
索引.html
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<title></title>
</head>
<body>
<iframe src="http://www.facebook.com/plugins/like.php?href=https%3A%2F %2Fwww.facebook.com%2Fchequeprintingsoftware&send=false&layout=standard& amp;width=450&show_faces=true&action=like&colorscheme=light&font& amp;height=80" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:450px; height:80px;" allowTransparency="true"></iframe>
</body>
</html>
VB.NET
Private Sub frmFaceBookLike_Load(sender As System.Object, e As System.EventArgs) Handles MyBase.Load
Dim html As String
html = File.ReadAllText(Application.StartupPath & "\index.html")
WebBrowser1.DocumentText = html
End Sub