Programming/Sharepoint
Webpart에 Usercontrol 추가하기
홍상길
2011. 11. 10. 09:26
[ Source Code ]
protected override void CreateChildControls()
{
if (!_error)
{
try
{
base.CreateChildControls();
this.Controls.Add(Page.LoadControl("~/_controltemplates/Demo.ascx"));
}
catch (Exception ex)
{
HandleException(ex);
}
}
}
{
if (!_error)
{
try
{
base.CreateChildControls();
this.Controls.Add(Page.LoadControl("~/_controltemplates/Demo.ascx"));
}
catch (Exception ex)
{
HandleException(ex);
}
}
}