PlaceHolder placeHolder =
(PlaceHolder) _view.MyPanel.FindControl("myplaceholder");
PlaceHolder placeHolder =
(PlaceHolder) _view.MyPanel.Controls[0];
ControlCollection ctrls = _view.MyPanel.Controls;
foreach( Control ctrl in ctrls )
{
if( ctrl.ID == "myplaceholder" )
{
placeHolder = (PlaceHolder) ctrl;
break;
}
}