自动刷新 Web 用户控件

发布于 2024-07-14 03:08:20 字数 77 浏览 5 评论 0原文

在asp.net 2.0中,如何在不进行页面回发的情况下自动刷新Web用户控件? 我已经在控件头标签中尝试过元标签,但它也会刷新整个页面。

How can we refresh a web user control automatically without a page postback in asp.net 2.0? i have tried meta tags in controls head tag but it also refreshes the whole page.

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

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

发布评论

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

评论(3

女皇必胜 2024-07-21 03:08:20

您可以尝试在您的应用程序中实现一些 ASP.NET AJAX 框架,并将该控件包装在 UpdatePanel 中。 它将与 .NET 2.0 一起使用

编辑:这是有关使用 ASP.NET AJAX UpdatePanel 的教程的快速链接:http://ajax.net-tutorials.com/controls/updatepanel-control/

这里是 ASP.NET 网站的官方介绍页面:http://www.asp.net/Ajax/Documentation/Live/tutorials/IntroductionUpdatePanel.aspx

You could try implementing a little bit of the ASP.NET AJAX Framework into your app and wrapping that control in an UpdatePanel. It will work with .NET 2.0

Edit: Here is a quick link to a tutorial on using the ASP.NET AJAX UpdatePanel: http://ajax.net-tutorials.com/controls/updatepanel-control/

And here is the official introduction page from the ASP.NET website: http://www.asp.net/Ajax/Documentation/Live/tutorials/IntroductionUpdatePanel.aspx

北方。的韩爷 2024-07-21 03:08:20

用户控件是基于服务器的控件。 您唯一的选择可能是某种类型的 javascript,但根据您想要完成的任务,可能性不大。

User Controls are server based controls. Your only option might be some type of javascript but depending on what you are try to accomplish, unlikely.

淤浪 2024-07-21 03:08:20

有多种方法可以做到这一点,这取决于您的控件是由什么组成的。

最简单的方法之一是将控件包装在 UpdatePanel 中,然后使用 Timer 控件来更新该 UpdatePanel。 但就视图状态而言,这可能会很昂贵。

另一种选择是使用 Jquery 和 Javascript 计时器之类的东西来倒计时,然后使用静态页面方法刷新 (http://encosia. com 有示例)。

There are several ways to do it and it depends on what your control is made of.

One of the easiest ways to do it is to wrap the control in an UpdatePanel and then use a Timer control to just update that UpdatePanel. But that might be expensive in terms of viewstate.

Another option is to use something like Jquery and a Javascript timer to count down and then refresh using static page Methods (http://encosia.com has examples).

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