本人在页面动态加载一个有分页功能DataGrid的用户控件到一个PlaceHolder,可是每次点击用户控件中的分页按钮,页面中的PlaceHolder就会变回初始空的状态,无法保留用户控件并显示下页结果。
请问哪儿仁兄能给指点一二?                   private void button_Click(object sender, System.EventArgs e)
{
this.ControlsAdd("Control/list.ascx");
} public System.Web.UI.Control ControlsAdd(string ucPath)
{
       this.placeCenter.Controls.Clear();
                System.Web.UI.Control addControl = this.LoadControl(ucPath);
                this.placeCenter.Controls.Add(addControl);
       return addControl;
}