VB.NETのwinformsアプリケーションに「いいね」ボタンを追加する方法を教えてください。Facebookの「いいね」ボタンを呼び出すためのiframeを含むindex.htmlを作成しました。次に、WebBrowserControlを使用してFacebookの「いいね」ボタンを表示しました。それは私のフォームに表示され、Facebookアカウントでログインできます。問題は、カウントが増えていないようです。助けてください!!!
これは私が使用したサンプルコードです
index.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