0
我有一個在動態添加pnRoom(面板)查找控制返回null
ImageButton imgbtn = new ImageButton();
imgbtn = new ImageButton();
imgbtn.Height = 25;
imgbtn.CssClass = "bulb";
imgbtn.ID = i++;
pnRoom.Controls.Add(imgbtn);
控制,並找到控制imgbtn
protected void LoadBulb()
{
foreach (Control c in pnRoom.Controls)
{
ImageButton img = (ImageButton)c.FindControl("imgbtn");
img.ImageUrl = "~/path/images/bulb_yellow_32x32.png";
}
}
當我收到空值它總是返回null。我嘗試但沒有運氣。我需要你的幫助。謝謝 !!!
未將對象引用設置爲對象的實例。