Не отображается Repearter в WebUserControl.
На самой странице я вставил PlaceHolder, куда добавляю СВОЙ контрол
ClientMotionDocsControl ClientMotionDocsControl1 = new ClientMotionDocsControl();
ClientMotionDocsControl1.Budget = Budget;
PlaceHolder1.Controls.Add(ClientMotionDocsControl1);
В ClientMotionDocsControl :
public class ClientMotionDocsControl : UserControl
{
string _Budget;
protected Repeater RepeaterMotion;
private void Page_Load(object sender, EventArgs e)
{
...
RepeaterMotion.DataSource = dv;
this.RepeaterMotion.Visible= true;
this.RepeaterMotion.DataBind();
}
}
Вот при присваивании RepeaterMotion.DataSource = dv; — RepeaterMotion-"Undefined value"
... << RSDN@Home 1.1.4 @@subversion >>