Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How can I copy items hardcoded from one dropdown box to another keeping the keys and values?

drpTypes.Items.Add(new ListItem("Tipos de Acções", "1"));
drpTypes.Items.Add(new ListItem("Tipos de Combustível", "2"));
drpTypes.Items.Add(new ListItem("Tipos de Condutor", "3"));

drpTypesCreateEdit.Items.AddRange(drpTypes.Items);
share|improve this question

3 Answers

up vote 12 down vote accepted

AddRange wants an array of ListItems. you can do it like this (C# 3+).

drpTypesCreateEdit.Items.AddRange(drpTypes.Items.OfType<ListItem>().ToArray()); 
share|improve this answer
I don't have that method in Items :( – LuRsT Apr 19 '10 at 13:56
What version of .NET are you using? If 3.5+, add a using statement for System.Linq. If 2.0, you could simply opt to iterate over the items in the first list and add them one by one to the second. – user414076 Apr 19 '10 at 13:59
It worked, thanks a lot mate :D – LuRsT Apr 19 '10 at 14:03

This would be one of the easier ways..

drpTypes.Items.Add(new ListItem("Tipos de Acções", "1"));
drpTypes.Items.Add(new ListItem("Tipos de Combustível", "2"));
drpTypes.Items.Add(new ListItem("Tipos de Condutor", "3"));

foreach(ListItem li in drpTypes.Items)
{
    drpTypesCreateEdit.Items.Add(li);
}

Do you need something more elaborate?

share|improve this answer
Thanks, but not what I was looking for – LuRsT Apr 19 '10 at 14:04

Agree with Anthony's comment above.

One thing to watch out for with either suggested method is that since these do not perform a deep copy, you can have some unintended effects from programmatically changing fields/attributes.

For example:

drpTypes.Items.Add(new ListItem("Tipos de Acções", "1"));
drpTypes.Items.Add(new ListItem("Tipos de Combustível", "2"));
drpTypes.Items.Add(new ListItem("Tipos de Condutor", "3"));

drpTypesCreateEdit.Items.AddRange(drpTypes.Items);

drpTypes.SelectedValue = "2";
drpTypesCreateEdit.SelectedValue = "3";

Both drpTypes and drpTypesCreateEdit now have SelectedValue of "3", whereas that is clearly not the intent of the above code.

Might be best to perform a deep copy by instantiating new ListItem objects instead of just passing the original object, something like this:

drpTypesCreateEdit.Items.AddRange(drpTypes.Items.OfType<ListItem().ToList.ConvertAll(x => New ListItem(x.Text, x.SelectedValue));
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.