我只是在学习编程......我有一个这样的下拉列表。
<div>
<asp:DropDownList ID="DropDownList1" runat="server">
<asp:ListItem >Alabama</asp:ListItem>
<asp:ListItem >Alaska</asp:ListItem>
</asp:DropDownList></div>
使用 C# 我想将所选项目发送到数据库。数据库字段是County nvarchar(50) NULL
,
我在 C# 后端看到了一些例子。我在互联网上找到了这个。我可以从下面的编码发送上面选定的项目吗?
protected void Page_Load(object sender, EventArgs e)
{
ListItem[] items = new ListItem[3];
items[0] = new ListItem("One", "1");
items[1] = new ListItem("Two", "2");
items[2] = new ListItem("Three", "3");
DropDownList1.Items.AddRange(items);