我正在使用 EmptyDataTemplate 在网格中输入新数据,而没有现有数据,但我无法在 EmptyDateTemplate 中找到我的控件
protected void gvNavigationDtls_RowCommand(object sender, GridViewCommandEventArgs e)
{
if (e.CommandName.Equals("EInsert"))
{
GridViewRow emptyrow = gvNavigationDtls.Controls[0].Controls[0] as GridViewRow;
if (((TextBox)emptyrow.FindControl("txtCode")).Text == "")
在页面加载中,我还通过编写以下代码进行了检查
gvNavigationDtls.DataBind();
Control c = gvNavigationDtls.Controls[0].FindControl("txtCode");
if (c != null)
{
}
但 c 为空,这意味着我无法找到使用它的控件,请帮助,在此先感谢