I have an website with some quotes(Platon,Aristotel etc..).All of this quotes are displayed on one site, they get pulled from database.I have a method that automaticly creates Like Button for each of these quotes when web site gets loaded:
System.Web.UI.HtmlControls.HtmlContainerControl fbIframe = new System.Web.UI.HtmlControls.HtmlGenericControl("iframe");
fbIframe.Attributes["scrolling"] = "no";
fbIframe.Attributes["frameborder"] = "0";
fbIframe.Attributes["style"] = "border:none; overflow:hidden; width:250px; height:21px;";
fbIframe.Attributes["allowTransparency"] = "true";
fbIframe.Attributes["src"] = "//www.facebook.com/plugins/like.php?href=" + HttpUtility.UrlEncode("http://www.example.com/like/" + Quote[0]) +
"&send=false&layout=button_count&width=250&show_faces=false&action=like&colorscheme=light&font&height=21";
How does it work: When someone likes URL for example http://www.example.com/like/4 Facebook externalhit crawles this link and my page(like.aspx routed to like/{ID}) creates Title and Meta decription dinamicly, it pulls quote from db and set it as meta description.. if it's not external hit user gets redirected to correct quote on my main page where all of them are displayed.
The problem is that I have 30-40 of this on page and site loads so slow. Is there some script that would allow me this kind of freedom to be able to change href of like url but to load like buttons asynchronously after page is loaded? Please go to detail as much as you can, because I never did any of Fb programming.
Thanks