如何加载网格(在主页面)后,在弹出页面添加了一些数据

本文关键字:添加 数据 网格 加载 何加载 主页 | 更新日期: 2023-09-27 18:03:45

假设我有一个添加按钮和网格的页面。Grid包含一些数据。如果我点击添加按钮,新的弹出窗口将打开。弹出窗口包含文本框和按钮,用于向网格添加新值。我的问题是,如何在弹出窗口中添加一些值后自动加载网格视图?

弹出窗口代码:

protected void btnAdd_Click(object sender, EventArgs e)
{
  ClientScript.RegisterStartupScript(this.GetType(), "newWindow", String.Format("<script>window.open('{0}','','width=550,height=300,left=500');</script>", "PopupADD.aspx"));
} 

如何加载网格(在主页面)后,在弹出页面添加了一些数据

按照以下步骤操作…

1.Design a window to add data to gridview inside a div.
2.Show the div as popup using Javascript.
3.Bind the gridview when you click some button(like ok) in that popup window.