在web應用程序中,我試圖在RowDataBound事件中查找網格控件。但它提供對象的實例的對象參考,這是我的代碼:在gridview中查找控件?在Asp.net中?
protected void mygrid_RowDataBound(object sender, GridViewRowEventArgs e)
{
string empid = "";
empid = ((Label)e.Row .FindControl("lblname")).Text;
}
您可以傳喚我找到控件,謝謝。
試試這個'標籤lblprop_img_id =(標籤)e.Row.Cells [2 ] .FindControl(「lblprop_img_id」);' – Murtaza 2012-01-12 09:36:41