我有一个带有 Gridview 的主页,它显示来自数据库的数据。在 gridview 中有一个按钮,当单击此按钮时,将出现一个对话框,允许您编辑选定的行。该对话框被创建为一个 aspx 类。当我编辑数据并关闭对话框时,我想在主页上刷新我的 GridView,以便表示编辑后的数据。我怎样才能做到这一点?
我用于编辑数据和关闭对话框的代码是这样的:
protected void editButton_Click(object sender, EventArgs e)
{
string alias = Request.QueryString["alias"];
string custid = Request.QueryString["custid"];
controller.EditDeliveries(custid, alias, tdaysField.Text, thoursField.Text, ttypeField.Text, pdaysField.Text, phoursField.Text, ptypeField.Text);
ClientScript.RegisterClientScriptBlock(GetType(), "onUpload", "<script type='text/javascript'> window.close();</script>");
}
任何人都可以帮忙吗?如果您需要查看更多代码,请告诉我。