在不同用户的网页上更新UpdatePanel

时间:2011-05-04 09:21:01

标签: c# asp.net ajax updatepanel

我有一个网页(aspx)。此页面包含buttonUpdatePanelTimer。现在我的问题如下,假设10个用户同时在此页面上,并假设用户编号3和8单击其按钮,则所有用户的UpdatePanel应该更新。什么是实现此功能的正确方法?

3 个答案:

答案 0 :(得分:1)

由于每个用户都在运行自己的Web应用程序副本,因此在一个用户的浏览器上发生的事情无法通知给其他用户。你可以做的一件事是当一个用户点击按钮进行更新时,你可以保存它,而所有用户应用程序都可以每隔2秒ping一次服务器,以了解更新是否发生以及是否更新。

答案 1 :(得分:0)

您可以使用全局属性。在该属性上,您可以放置​​一个Observer模式,并让访问者订阅。当您更改Application属性(在所有Sessions中共享)时,您将调用Notify()方法。调用客户端Notify()方法,并在那里放置更新UpdatePanel的功能。

此代码未经过测试,是一项指南

// *** GLOBAL.ASAX
// This collection will contain all the updatepanels that need to be updated
private List<IUpdatePanelClient> _registeredClients = new List<IUpdatePanelClient>();

public static void RegisterClient(IUpdatePanelClient client)
{
    _registeredClients.Add(client);
}
public static void UnregisterClient(IUpdatePanelClient client)
{
    _registeredClients.Remove(client);
}
// Which client is triggering the update call ?
private IUpdatePanelClient _clientUpdating = null;
public static IUpdatePanelClient ClientUpdating
{ 
    get { return _clientUpdating ; } 
    set { _clientUpdating = value; Notify(); }
}
// Notify the clients
public static void Notify()
{
    foreach(IUpdatePanelClient client in _registeredClients)
    {
        client.Update();
    }
}

// *** IUPdatePanelClient.CS
interface IUpdatePanelClient // Interface to make the calls
{
    void Update();
}

// *** Your codepage
public class MyUpdatePanelPage : Page, IUpdatePanelClient // Inherit the interface
{
    public void Page_Load(Object sender, EventArgs e)
    {
        MyUpdatePanelPage.Global.RegisterClient(this);
    }

    public void Btn_Click(Object sender, EventArgs e)
    {
        MyUpdatePanelPage.Global.ClientUpdating = this;
    }

    public void Update()
    {
        this._updatePanel1.Update();
    }
}

答案 2 :(得分:0)

您的问题没有足够的信息供任何人正确回答。如果有信息要保持所有用户最新更新,请将该信息存储在数据库中。当一个用户从其用户会话编辑数据时,每当其他用户刷新其页面时,他们将获得最新的数据。如果您想要定期刷新页面,请使用javascript计时器。