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 building a small Facebook application in an iframe mod. In my application I want to enable my users to search their friends. After working a bit with XFBML I’ve added the following code to my aspx page:

<fb:serverfbml>
    <script type="text/fbml">
         <fb:fbml>
             <fb:multi-friend-input width="150px" border_color="#8496ba"  />
         </fb:fbml>
      </script>
  /fb:serverfbml>

Now I’ve got an auto-completebox, which searches for the users’ friends. Now, on postback I want to read these values. My problem is that I don’t seem to be able to retrieve them at all! So I wrapped this code inside a div like this:

<div runat="server" id="friendsNames">
    <fb:serverfbml>
        <script type="text/fbml">
            <fb:fbml>
                <fb:multi-friend-input width="150px" border_color="#8496ba"  />
            </fb:fbml>
        </script>
    </fb:serverfbml>
</div>

And now I use JavaScript code to retreive the div. When I want to view the HTML I receive the following code:

<fb:serverfbml class=" FB_serverFbml FB_ElementReady">
    <script type="text/fbml">
        <fb:fbml>
            <fb:multi-friend-input width="150px" border_color="#8496ba" id="bla"  />
        </fb:fbml>
    </script>
    <iframe 
        name="fbmlIFrame_0" 
        frameborder="0" 
        src="http://89.139.181.250:8080/socialtodo/xd_receiver.htm" 
        class="fbmlIframe" 
        scrolling="no" 
        style="height: 553px; ">
    </iframe>
</fb:serverfbml>

Yes, you read it right. I got an iframe out of nowhere. Now the really strange thing is that when I view the auto-completecontrol using Google Chrome’s ‘’Inspect Element” I do get the correct values, for example:

<span>
    <input 
          type="hidden" 
          class="fb_token_hidden_input" 
          fb_protected="true" 
          name="ids[]" 
          value="100000038473670">
    "Alferon De"
    --some more text --
</span>

[By the way, if you're wondering why input doesn't get closed... I have no idea.]

share|improve this question
somebody please answer this... I am facing the same problem... – happyhardik Nov 27 '10 at 11:25

closed as too localized by Kev Sep 2 '12 at 23:12

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.

Browse other questions tagged or ask your own question.