ASP.NET中,動態載入使用者控制元件

iDotNetSpace發表於2009-01-05
ASP.NET中,動態載入使用者控制元件,有些人可能會碰到使用者控制元件中的事件(比如按鈕等)沒有觸發,使用者控制元件消失等情形。我也曾遇到這樣的情況,將一些經驗總結如下,實際上,如果你對ASP.NET的頁面模型及其生命週期很熟悉的話,這樣的問題很容易想到解決方法的。

使用者控制元件中的事件會導致其所在的頁面回發,在回發時必須將使用者控制元件重新載入。
在載入使用者控制元件的方法中,將最後一次載入的使用者控制元件路徑儲存起來,以便在頁面Load方法中重新載入該控制元件。

protected void Page_Load( object sender , EventArgs e ){
  if( this.LatestLoadedControlName != "" )
  this.LoadUserControl( LatestLoadedControlName , container );
}

protected string LatestLoadedControlName
{
 get
 {
  return (string)ViewState["LatestLoadedControlName"];
 }
 set
 {
  ViewState["LatestLoadedControlName"] = value;
 }
}
public void LoadUserControl(string controlName, Control container)
{
 //先移出已有的控制元件
 if (LatestLoadedControlName != null)
 {
  Control previousControl = container.FindControl(LatestLoadedControlName.Split('.')[0]);
  if (previousControl != null)
  {
   container.Controls.Remove(previousControl);
  }
 }
 string userControlID = controlName.Split('.')[0];
 Control targetControl = container.FindControl(userControlID);
 if (targetControl == null)
 {
  UserControl userControl = (UserControl)this.LoadControl(controlName);
  userControl.ID = userControlID;
  container.Controls.Add(userControl);
  LatestLoadedControlName = controlName;
 }
}

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/12639172/viewspace-526850/,如需轉載,請註明出處,否則將追究法律責任。

相關文章