Facebook Like Button - Basic ASPX Pages
2 answers
Use the Facebook Like Button generator here:
Facebook Like Button Generator
Paste the generated iframe code into your main page. If you leave it the way it will "like" your site, not specific pages.
To "like" individual pages, you can take the generated code and find a section like this:
src="http://www.facebook.com/plugins/like.php?href=mysite.com&
Change it like this:
src="http://www.facebook.com/plugins/like.php?href=<%=Request.Url.ToString() %>&
And that should work to "please" each particular page.
+6
a source to share