protected System.Web.UI.WebControls.PlaceHolder divModuleContent;
 
  private void Page_Load(object sender, System.EventArgs e)
  {
   string strModuleCode = Request.Params.Get("Module");
   if (strModuleCode != null && strModuleCode.Length > 0)
   {
    this.divModuleContent.Controls.Add(Page.LoadControl(String.Concat(strModuleCode, ".ascx")));
   }
  }

相关文章:

  • 2021-07-14
  • 2021-09-05
  • 2022-12-23
  • 2021-10-24
  • 2022-12-23
  • 2021-06-22
猜你喜欢
  • 2022-12-23
  • 2022-02-11
  • 2022-12-23
  • 2022-12-23
  • 2022-03-03
  • 2021-07-24
  • 2022-12-23
相关资源
相似解决方案