私のフォームでは、コンテンツ プレース ホルダーを 1 つ追加し、コンテンツ プレース ホルダー内に手動でボタンを追加しましたが、実行時に同じコンテンツ プレース ホルダーにボタンを追加したいと考えています。次のコードを試しましたが、ブラウザにボタンが表示されません...ここで何が問題なのかわかりません...
私のコード...
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);