ASP.NET使用动态加载控件,注意页面生命周期

  1. Add the dynamic controls on each page visit in the page's Initialization stage,
  2. Read/write the dynamic controls' properties and methods in the Page_Load event handler.
Dynamic web control for postback,state...

在页面结构生成(页面树)之前更改控件集,利用页面声明周期的LoadViewState自动维护动态添加
的控件状态,无需额外操作。

你可能感兴趣的:(asp.net)