vote up -1 vote down star

I'm on an iframe application using the Facebook .NET library. I have a bunch of fb:tabs, each time I click on one of the tabs, I redirect to another page within the facebook app which have the tabs (except with a different one selected) and an iframe below that loads a different page. Basically I have a bunch of pages that have tabs and an iframe below the tabs (So basically it's an iframe within an iframe) that displays a page from my external server.

When I click on a tab, the entire facebook website loads in the inner iframe. All I want is to load the contents of the other page. How can I fix this?

edit: I must clarify, that in my settings, it is pointed to localhost currently. I have various pages in my solution in localhost, and when I redirect from one to another, the entire Facebook site loads within the iframe.

flag

3 Answers

vote up 0 vote down

Your iframe should point to the pages that exist on your domain (ie http://www.mysite.com/faq.html, not the Facebook proxy, http://apps.facebook.com/myapp/faq.html.

link|flag
I must clarify, that in my settings, it is pointed to localhost currently. I have various pages in my solution in localhost, and when I redirect from one to another, the entire Facebook site loads. – Swami Aug 11 at 18:28
vote up 0 vote down

To avoid the double border issue, you need to navigate with javascript and set window.top.location to the canvas url of your app. On the server side, instead of traditional redirects a common approach is render a single javascript snippet which does the aforementioned. iframe apps can definitely be a PITA at times! Good luck!

link|flag
vote up 0 vote down

Hi. Did you solved this issue? I'm facing the same problem.

link|flag

Your Answer

Get an OpenID
or

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