Hello,

I have a DetailsView (called avancement). When I go into EditMode, I disabled a DropDownList control in function of the Date of the system. But when a user changes a value of the another DropDownList control (because there is not a only one) by clicking on the Button "Update", the DropDownList control which is disabled will put the empty value in the database whereas I would like to put the same value before the Update. 
This is my aspx code to better understand :

<asp:DetailsView ID="avancement" Width="250px" Height="100%" DataSourceID="SqlDataSource1" AutoGenerateRows="False" DataKeyNames="ID" runat="server" OnDataBound="avancement_DataBound"> <HeaderStyle BackColor="Navy" ForeColor="White" /> &l ...

Go to the complete details ...