首页 > 编程 > .NET > 正文

asp.net动态载入用户控件的方法

2024-07-10 13:22:34
字体:
来源:转载
供稿:网友
在 Page_Load 中写入下面代码:


string s=base.QueryString("usctrl") ;
string uc= (s== String.Empty) ? "~/myweb/userctrl/default.ascx"  :  "~/myweb/userctrl/""  + s + ".ascx" ;

PlaceHolder1.Controls.Clear();   
PlaceHolder1.Controls.Add(LoadControl(uc)); 
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表