Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How do I add a FaceBook 'like' button to my master pages, does it need to be different for each page?

share|improve this question
Can you be more specific? Are you wanting to tie into the Facebook API or do you just want similar functionality? – Atømix Apr 29 '10 at 22:24
Looking to have a 'like' button so that people can send the link to their friends. – BahaiResearch.com Apr 30 '10 at 11:34

2 Answers

up vote 5 down vote accepted

Use the Facebook Like Button generator here:

Facebook Like Button Generator

Paste the generated iframe code into your master page. If you leave it as is it will 'like' your site, not specific pages.

To 'like' the individual pages you can take the generated code and look for a section like this:

src="http://www.facebook.com/plugins/like.php?href=mysite.com&

Modify that to read:

src="http://www.facebook.com/plugins/like.php?href=<%=Request.Url.ToString() %>&amp;

And that should work to 'like' each specific page.

share|improve this answer

You should also add the META property of the generated facebook like button dynamically: use a HtmlGenericControl in the code behind. I wrote a full article how to add an asp.net like button while using master pages : link text

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.