我想在从表中获取数据后在运行时生成标签和相应的文本框。我该怎么做?
答案 0 :(得分:0)
在页面中添加一个面板或div,并在后面的代码中创建控件。将这些控件添加到面板/ div中,如下所示。
Label testLabel = new Label();
testLabel.ID = "TestLabel";
testLabel.Text = "Test";
this.TestPanel.Controls.Add(testLabel);
TextBox testTextBox = new TextBox();
testTextBox.ID = "TestTextBox";
this.TestPanel.Controls.Add(testTextBox);
希望这有助于!!