我正在使用一个DropDownList
这样的GridView
:
<asp:DropDownList ID="drpstatus" Style="outline: 0" runat="server" SelectedValue='<%#Eval("status_value")%>'>
<asp:ListItem Text="Inactive" Value="0"></asp:ListItem>
<asp:ListItem Text="Active" Value="1"></asp:ListItem>
<asp:ListItem Text="Rejected" Value="2"></asp:ListItem>
</asp:DropDownList>
当我第一次绑定时,它会显示正确的选定值,但是当我通过另一个网络表单更改值并刷新此页面时,值仍然保持不变。我检查了数据库;它已经改变,但在下拉列表中没有改变。