0

Using this: Can I use Facebook's fb:friend-selector in an iframe? I created a multi-friend selector in my IFRAME FB application.

I want to know if the user selected any users for invite so I can reward him with extra points. In the developer WIKI I saw that [ids] is transferred to requested page via POST. But how I can capture the values if I'm using JS/.NET? (Preferably through .NET so I can easily save values in the DB).

Community
  • 1
  • 1
Faruz
  • 9,909
  • 10
  • 48
  • 66

1 Answers1

1

Feel like an idiot...

Had to do:

Request.Form["ids[]"]

in order to get the values...

Faruz
  • 9,909
  • 10
  • 48
  • 66