Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am having fb-like and fb-share button on my page, but when i click like or share button, the count in like and share increases simultaneously.

As for example like count = 4 and share count = 3 after liking my web page Like count =5 and share count = 5

This is the problem

enter image description here

fb-like button code

<iframe src="http://www.facebook.com/plugins/like.php?href=<%=ShareURL.ToString() %>&layout=button_count&show_faces=false&width=100&action=like&font=lucida+grande&colorscheme=light&height=21" scrolling="no" frameborder="0" style="border: none; overflow: hidden; width: 85px;height: 21px;" allowtransparency="true">

fb-share button code

 <div style="display: inline; float: right; margin-removed 80px;">
   <a href="http://www.facebook.com/sharer.php" name="fb_share">
      share_url="<%=ShareURL.ToString() %>" type="button_count">Share</a>
   <script src="http://static.ak.fbcdn.net/connect.php/js/FB.Share">
          type="text/javascript"></script>

share|improve this question
Please improve your accept rate if you'd like people to pay more attention to your questions. – Deepesh May 15 '12 at 5:57

1 Answer

Make be you have used same Application Variable for like and share count. so when you increase share count, your like count goes on increasing.

use different variable for each.

share|improve this answer
I have used just the plugin which is provided by Facebook – MARKAND Bhatt May 15 '12 at 5:48

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.