自动刷新 Web 用户控件
在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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以尝试在您的应用程序中实现一些 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
用户控件是基于服务器的控件。 您唯一的选择可能是某种类型的 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.
有多种方法可以做到这一点,这取决于您的控件是由什么组成的。
最简单的方法之一是将控件包装在 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).