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 have an aspx page with feedback form which rendered inside facebox. In the form, i have a button which used to submit the form. After this, the facebox closes and its opening the page which is loading in the facebox in another page. I did go through many q&a here and tried on many suggested answers such as the link attached as below but unfortunately I still cannot figure it out.

http://weblogs.asp.net/kariemsoudy/archive/2009/11/02/buttons-inside-facebox-popup-don-t-postback-fix.aspx

Facebox adding commas to input

Appreciate for any reply. thanks in advance.

share|improve this question

2 Answers

You might want to try sticking your app in an UpdatePanel so that when you postback in your section it's not posting back the entire site to FaceBook. I'm not sure how your site is embedded into facebook, but if possible you might also try using iFrames to do the same thing (so that you're only posting back your frame, and not the entire facebook page). My guess is that the postback to facebook results in your page being overwritten (by facebook).

share|improve this answer

If you are having issues with posting back, the easiest way to force the postback is to trigger the __doPostBack method as in:

__doPostBack('uniqueid', 'args');

Regardless of the issue with the button click, this should do the job.

share|improve this answer
where to place this block of code? – SƲmmēr Aƥ Feb 3 '12 at 18:14
it would be fired from some block of JavaScript code, possibly due because it has been attached to a JavaScript event. – Servy Feb 3 '12 at 18:36
thanks to @Servy – SƲmmēr Aƥ Feb 3 '12 at 18:50
@Brian Mains but the facebox closes and its opening the page which is loading in the facebox in another page after postback. – SƲmmēr Aƥ Feb 3 '12 at 18:52

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.