我想从数据库中获取一个值并将其作为选定值放入DropDownList
,因此当我想编辑此用户时,我会以旧部门为例。
有人在第1部门工作,现在我想将他们的部门更新为2.但我希望DropDownList
从数据库中自动选择他们的旧部门1,所以如果我想保留它,我会得到相同的旧版本没有变化的价值。
这是我的代码:
<asp:DropDownList ID="DropDownList1" runat="server" AutoPostBack="True" DataTextField="departmentvalue" DataValueField="departmentvalue" CssClass="select2_single form-control" tabindex="-1">
<asp:ListItem Value="" Selected="True" ID="department"></asp:ListItem>
<asp:ListItem>شئون العاملين</asp:ListItem>
<asp:ListItem>تكنولوجيا المعلومات</asp:ListItem>
<asp:ListItem>السكرتاريه</asp:ListItem>
<asp:ListItem>الامن</asp:ListItem>
<asp:ListItem>معمل الابحاث</asp:ListItem>
<asp:ListItem>الجوده</asp:ListItem>
<asp:ListItem>الانتاج</asp:ListItem>
<asp:ListItem>عنبر الخلط</asp:ListItem>
<asp:ListItem>المخازن</asp:ListItem>
<asp:ListItem>الامن الصناعى</asp:ListItem>
<asp:ListItem>المطعم</asp:ListItem>
<asp:ListItem>البوفيه</asp:ListItem>
<asp:ListItem>خدمات</asp:ListItem>
</asp:DropDownList>
当我添加ID时,它说错误但工作正常并给出结果但是当我点击保存时它没有给出值,它将值保持为空。