I have been looking into facebook integration with ASP.Net 4.0 WebSite / WebForms using masterpage. And i have to say that its not so much good exsamples out on google when it comes to using ASP.Net C# for achivieng facebook integration...
We can find many good explanations about facebook OG: type Meta Tags, and how to use them / set up. These links helped me alot to understand the basic of how it works, but still iam not in GOAL yet.
I have manged to dynamically create my FB OG meta tags using HtmlMeta in C#, below u can se the code and the result from html page source.
var hm = new HtmlMeta(); hm.Attributes.Add("property", "og:title"); hm.Content = meta.ogTitle; head.Controls.Add(hm); This is how it looks like in html page source:
(<meta property="og:title"< ...

Go to the complete details ...