在我的表单中,我添加了一个内容占位符,并在内容占位符中手动添加了一个按钮。但是现在我想在运行时在同一个内容占位符中添加一个按钮。我尝试了以下代码,但是浏览器中没有显示按钮...我不知道这里有什么问题...
我的代码...
ContentPlaceHolder content = (ContentPlaceHolder)this.Master.FindControl("maincontent");
Button newButton = new System.Web.UI.WebControls.Button();
newButton.ID = "NextButton";
newButton.Text = "Next";
newButton.Visible = true;
content.Controls.Add(newButton);