62,269
社区成员
发帖
与我相关
我的任务
分享
Control ctl = new Control();
if (bt == BusinessType.商业类)
ctl = (Control)Page.LoadControl("Control/ShopGoods.ascx");
if (bt == BusinessType.服务类)
ctl = (Control)Page.LoadControl("Control/HotelRoom.ascx");
if (bt == BusinessType.其他)
ctl = (Control)Page.LoadControl("Control/OtherServices.ascx");
PlaceHolder1.Controls.Add(ctl);