标题很好地解释了它,但为了冗余。我正在尝试单击按钮以在页面上生成代码(当然是定义的代码)。
protected void AddButton_Click(object sender, EventArgs e)
{
}
我希望它生成的代码将添加 2 个下拉列表,这些下拉列表将自动将它生成的下拉列表 ID 增加 1,它还需要基于 SQL 查询在数据库中创建一个表。
<asp:DropDownList ID="DropDownList" runat="server" AppendDataBoundItems="True" DataSourceID="box_1" DataTextField="box_1" ToolTip="Checkbox #1" AutoPostBack="True" OnSelectedIndexChanged="DropDownList_SelectedIndexChanged">
<asp:ListItem Text="--Select One--" Value="" />
</asp:DropDownList>
编辑
protected void AddButton_Click(object sender, EventArgs e)
{
int a = 0;
string x = dropdowncounter.Value;
a = Convert.ToInt16(x);
a = a + 1;
dropdowncounter.Value = a.ToString();
DropDownList DropDownList1 = new DropDownList(){
// Set the DropDownList's Text and ID properties.
Text = "DropDownList",
ID = "DropDownList" + a.ToString(),
DataSourceID = "Box_1",
DataTextField = "box_1",
ToolTip = "Check Box Added!"
};
//addoptions1 = DropDownList1;
//addoptions.Controls.Add(myDropDownList);
//// Add a spacer in the form of an HTML <br /> element.
//addoptions.Controls.Add(new LiteralControl("<br />"));
}
这是我到目前为止所拥有的,我觉得我已经接近我需要的功能(尽管我没有看到任何新的下拉框正在制作。)。有什么帮助吗?