ASP.NET 中的 Facebox 无法回发

发布于 2025-01-01 18:30:55 字数 554 浏览 1 评论 0原文

我有一个带有反馈表单的 aspx 页面,该表单呈现在 Facebox 内。在表单中,我有一个用于提交表单的按钮。此后,facebox 关闭并打开正在另一个页面的facebox 中加载的页面。我确实在这里进行了许多问答,并尝试了许多建议的答案,例如下面附加的链接,但不幸的是我仍然无法弄清楚。

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

Facebox 在输入中添加逗号

感谢您的任何回复。提前致谢。

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.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

|煩躁 2025-01-08 18:30:55

您可能想要尝试将您的应用程序粘贴到 UpdatePanel 中,以便当您在您的部分中回发时,它不会将整个网站回发到 Facebook。我不确定你的网站是如何嵌入到 Facebook 中的,但如果可能的话,你也可以尝试使用 iFrame 来做同样的事情(这样你只发回你的框架,而不是整个 Facebook 页面)。我的猜测是,回发到 Facebook 会导致您的页面被覆盖(被 Facebook 覆盖)。

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).

绅士风度i 2025-01-08 18:30:55

如果您在回发时遇到问题,强制回发的最简单方法是触发 __doPostBack 方法,如下所示:

__doPostBack('uniqueid', 'args');

无论按钮单击出现什么问题,这都应该可以完成任务。

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文