asp.net动态载入用户控件的方法
更新时间:2007年09月10日 21:46:45 作者:
在 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));
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));
相关文章
Web.Config文件配置之限制上传文件大小和时间的属性配置
在Web.Config文件中配置限制上传文件大小与时间字符串时,是在httpRuntime httpRuntime节中完成的,需要设置以下2个属性:maxRequestLength属性与ExecutionTimeout属性,感兴趣的朋友可以了解下,或许对你有所帮助2013-02-02IIS Express 取代 ASP.NET Development
这篇文章主要介绍了IIS Express 取代 ASP.NET Development Server的配置方法,需要的朋友可以参考下2023-06-06
最新评论