首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > asp.net >

关于usercontrol的有关问题

2012-01-23 
关于usercontrol的问题主页面中有两个用户控件A、B,点击A中的不同链接,B控件动态加载不同的用户控件。希望高

关于usercontrol的问题
主页面中有两个用户控件A、B,点击A中的不同链接,B控件动态加载不同的用户控件。
希望高手能提供能实现相关功能的代码

[解决办法]
MyControl myControl = (MyControl)LoadControl( "../x/xxxx.ascx ");

Controls.Add(myControl);
[解决办法]
pannel和占位符都可以实现。
UserControl uc = new UserControl();
UserControl uc1=uc.LoadControl( "~/AUserControl.ascx ") as UserControl;
this.Panel1.Controls.Add(uc1);

热点排行