Summary
I load cities from the data context into two different lists and bind them to their respective DropDownList controls.
Although the code is the same for both, and only the data and obviously the name of the controls are different, the data binding seems to not work properly for only one of them. Instead of displaying the city name, it displays its Id, that is, for the first option only!
Code-behind
We have two DropDownList controls:
DestinationDropDownList;OriginDropDownList.
Then, I populate them.
public partial class MyControl : UserControl {
protected void Page_Load(object sender, EventArgs e) {
if (!IsPostBack) {
var instruction = new City() {
CityId = Guid.Empty,
CityName = "- Select a city -"
};
var destinations = context.Cities.ToList();
destinations = destinations.OrderBy(c => c.CityName).ToList();
destinations.Insert(0, instruction);
DestinationDropDownList.DataSource = destinations;
DestinationDropDownList.DataTextField = "CityName";
DestinationDropDownList.DataValueField = "CityId";
DestinationDropDownList.DataBind();
var origins = context.Cities.ToList();
origins = origins.OrderBy(c => c.CityName).ToList();
origins.Insert(0, instruction);
OriginDropDownList.DataSource = origins;
OriginDropDownList.DataTextField = "CityName";
OriginDropDownList.DataValueField = "CityId";
OriginDropDownList.DataBind();
}
}
private static readonly MyDataContext context = new MyDataContext();
}
HTML
<asp:DropDownList ID="DestinationDropDownList" runat="server" />
<asp:DropDownList ID="OriginDropDownList" runat="server" />
Datum displayed
*DestinationDropwDownList*
- 0000-0000-0000-0000-0000 (empty Guid)
- CityName 01
- CityName 02
- ...
*OriginDropDownList*
- - Select a city -
- CityName 01
- CityName 02
- ...
The correct display is the one rendered by OriginDropDownList control. Why is DestinationDropDownList not displaying the data correctly, that is, for the first and only the first item in its list!? I don't get it at all and lost a few hours already trying to find the solution! =(
- I tried removing the first item before inserting the instruction;
- I tried to insert the instruction twice, then remove the first one;
- I tried to go along with the
DropDownList.Items.Add(string)method, and this was displaying nothing as for the first row, instead the the empty Guid.
Questions
- Has one ever encountered such issues with the DropDownList control?
- How to correct this behaviour!?
EDIT #1
michielvoo's answer helped me find a new way of data binding the instruction. Through his code, the found workaround is this:
<asp:DropDownList ID="DestinationDropDownList" runat="server"
AppendDataBoundItems="true"
CssClass="required">
<asp:ListItem Value="- Select a city -" />
</asp:DropDownList>
removing the instruction insert from within the code for this very DropDownList only. Now it displays exactly what I wanted from the beginning.
I accepted his answer since it is him who led me to a nice workaround. I don't feel like it is the real solution, but as long as the results is their, I don't mind much. Aside, instead of verifying for a Guid.Empty for the validation of the page, I will have to check for my instruction, and invalidate the page when the user didn't select a city located at another index than 0, since my checkup with a Guid will fail.
EDIT #2
With the code-behind stated in michielvoo's answer, it totally solved the problem I had for the DropDownList displaying the ListItem.Value property instead of the ListITem.Text property for only and only the first item in the list. I don't know what's wrong with the other ways, but this one works great!
Thanks michielvoo!
Thanks you all for your kind support! =)
DestinationDropDownList.DataBind()and debug your app. After executing that line, what is the value ofDestinationDropDownList.Items[0].Text? – Michael Liu Jan 25 '12 at 19:06