当前位置:Gxlcms > asp.net > asp.net动态载入用户控件的方法

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

时间:2021-07-01 10:21:17 帮助过:29人阅读

在 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)); 

人气教程排行