forum

Home / DeveloperSection / Forums / SelectedValue of DropDownList is not the one I selected when Enabled=false

SelectedValue of DropDownList is not the one I selected when Enabled=false

Mark Devid169427-Aug-2014

I have a few DropDownLists on a webform each pointing to a SqlDataSource. Some of these datasources use one of these DropDownLists for a select parameter, filtering the list to specific categories.

For certain users two of these DropDownLists are to be automatically set and disabled.

When I submit the form with the drop downs enabled it works fine but when they are disabled the SelectedValue of the DropDownList is being reset to the first one in the list.

 

<asp:DropDownList ID="ddlManager" runat="server" DataSourceID="dsManagers"

  EnableViewState="false" DataValueField="ManagerID" DataTextField="MgrName"

  AppendDataBoundItems="false" ondatabound="ddlManager_DataBound" >

The drop down lists add an extra item on the data bound event as follows:

 

protected void ddlManager_DataBound(object sender, EventArgs e)

{

  this.ddlManager.Items.Insert(0, new ListItem("--Manager--", "--Manager--"));

}


Updated on 27-Aug-2014

Can you answer this question?


Answer

1 Answers

Liked By