将中继器绑定到 AJAX 响应的最佳方法是什么?

发布于 2024-07-27 21:46:24 字数 475 浏览 5 评论 0原文

我正在尝试在 AJAX 响应后绑定中继器。

  • 第 1 步:对隐藏代码中的函数进行 Ajax 调用:
  • 第 2 步:执行一些业务逻辑,最后将数据绑定到中继器
  • 第 3 步:从代码隐藏中获取对 Ajax 调用的响应
  • 第 4 步:一旦我们得到响应返回什么是去除额外 HTML 的正确方法,例如 head 和 body 标签等。

一种方法是放置“断路器”逻辑。 例如:

<html><body>
#breaker
REPEATER control HERE
#breaker
</html></body>

一旦我收到响应,我就会使用 JS 函数来查找 #breaker 标记之间的任何内容,并删除外部的任何内容,我应该只获得重复项目所需的 HTML 响应。

这是实现此类功能的唯一/最佳方法吗?

I am trying to bind a repeater after an AJAX response.

  • Step 1 : Make an Ajax call to the function in the code behind:
  • Step 2 : Do some business logic and finally bind the data to the repeater
  • Step 3 : Get the response back from the codebehind to the Ajax call
  • Step 4 : Once we get the response back what is the right way to strip out extra HTML for example the head and body tags etc.

One way is to put a "breaker" logic. for example:

<html><body>
#breaker
REPEATER control HERE
#breaker
</html></body>

and once I get the response back I use a JS function to find anything between the #breaker tags and strip out anything outside and I should get the required HTML response of only the repeated items.

Is this the only / Best way to achieve this kind of functionality?

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

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

发布评论

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

评论(1

[浮城] 2024-08-03 21:46:24

实在无法理解你的问题。 AJAX调用到底是如何实现的? 一种直接的方法可能只是将所有需要的控件放在 UpdatePanel 中,并让它处理 AJAX 回发,而不必担心“HTML”标签的剥离。

如果您是 UpdatePanel 的新手,这可能会有所帮助:
http://www.asp.net/Ajax/Documentation/Live/概述/UpdatePanelOverview.aspx

Couldn't really understand your question. How exactly is the AJAX call implemented? A straightfroward method might be just place all your required controls in the UpdatePanel and let it handle the AJAX postback without worrying about the stripping of "HTML" tags.

This might help if you are new to UpdatePanel:
http://www.asp.net/Ajax/Documentation/Live/overview/UpdatePanelOverview.aspx

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