以下是我在按钮点击时访问gridview内部的下拉列表的代码。我知道它是由于页面的回发。但是如何解决它。
protected void Button1_Click(object sender, EventArgs e)
{
GridViewRow row;
row = dgData.Rows[0];
DropDownList ddl= (DropDownList)(row.Cells[1].FindControl("ddlCol1"));
}
在页面加载时,我调用了绑定gridview的方法。
if (page.ispostback==false)
{
grdbind();
}
答案 0 :(得分:0)
如果是第一个,请尝试使用第0个单元格
(row.Cells[0].FindControl("ddlCol1"))