gpt4 book ai didi

c# - 如何在运行时在 asp.net 中的内容占位符中添加按钮?

转载 作者:行者123 更新时间:2023-11-30 17:58:14 25 4
gpt4 key购买 nike

在我的表单中,我添加了一个内容占位符,还在内容占位符中手动添加了一个按钮。但现在我想在运行时在同一内容占位符中添加一个按钮。我尝试了以下代码,但该按钮未在浏览器中显示...我不知道这里有什么问题......

我的代码...

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);

最佳答案

您丢失了按钮的大小和位置。

关于c# - 如何在运行时在 asp.net 中的内容占位符中添加按钮?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12527109/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com