User47306736 posted
Here we go.... i have this dropdown box in listview when it was null it was working ok no problem,upon field update everything work fine.
problem apper the next time i tried to update the listview will show the recored but when click on edit it give me the following error.
'Value' has a SelectedValue which is invalid because it does not exist in the list of items.
it explain why so i check my list of item and here is how it is look like
<asp:DropDownList ID="Drop" runat="server" Text='<%# Bind("Drop") %>'>
<asp:ListItem></asp:ListItem>
<asp:ListItem>Yes</asp:ListItem>
<asp:ListItem>No</asp:ListItem>
</asp:DropDownList>
the value in the table is No so it is in the list of item, i can not understand why it still give me this error, i even try to delete the No from the table but did not help
Any advice will be appreciated