Please bear with me, I have bought an "Off the shelf" application Classifieds Application written in Classic ASP.
I have completely re-styled it all myself whilst learning the code.
I am now wanting to get the Facebook Like button to "Like" individual Items. The following code is the actual like button code
<iframe src="//www.facebook.com/plugins/like.php?href=www.worthingads.com/Classifieds/CPViewItem.asp?ID=<%=request("ID")%>&send=false&layout=button_count&width=450&show_faces=false&action=like&colorscheme=light&font&height=35" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:450px; height:35px;" allowTransparency="true"></iframe>
I have "replace" functions on the asp page as below
sTemp = Replace(sTemp, "%TITLE%", sItemTitle)
sTemp = Replace(sTemp, "%IMAGE%", sImage)
sTemp = Replace(sTemp, "%DESCRIPTION%", sCadDescription)
sTemp = Replace(sTemp, "%URL%", sURL)
And I have the Meta OG on the HTML Template (which surrounds that asp page as below
<meta property="og:title" content="%TITLE%"/>
<meta property="og:type" content="ARTICLE"/>
<meta property="og:url" content="%URL%"/>
<meta property="og:image" content="%IMAGE%"/>
<meta property="og:site_name" content="WorthingAds.com"/>
<meta property="og:description" content="%DESCRIPTION%"/>
If I place the "placeholders" of %TITLE% into the HTML page it will show the Title of the item and so on but, once the item is liked, Facebook doesn't show the items proper details if that makes sense?