我在内容页面上有一个带有数据的gridview。我需要将gridview的数据源作为母版页按钮click上的数据表。以下是我的代码
string DicPageName = Page.GetType().Name;
GridView gv1;
DataTable DT;
if (DicPageName == "dictionaries_abs_aspx")
{
gv1 = (GridView)ContentPlaceHolder2.FindControl("GridView1");
if (gv1 != null)
{
if (gv1.Visible)
{
DT = new DataTable();
DT = (DataTable)gv1.DataSource;
}
}
}
但 DT 返回 null.plz 帮助