Hi Ramadu,
You can can even do it using the ListItemCollection .
You need to provide the DataTextField and DataValueField before you do the
Call the Databind method or the DropDownList
Here is a sample code to explain how to do this.
Put this code on the page_load
ListItemCollection myColl = new ListItemCollection();
myColl.Add( new ListItem("One","One"));
myColl.Add( new ListItem("Two","Two"));
myColl.Add( new ListItem("Three","Three"));
DropDownList1.DataSource = myColl;
// This two lines you are missing ???
DropDownList1.DataTextField = "text";
DropDownList1.DataValueField = "value";
DropDownList1.DataBind();
HTH
Regards
Ashish M Bhonkiya
[quoted text, click to view] "RAMADU" <sriram.venkataramani@patni.com> wrote in message
news:EBEAC645-9EC0-4E5F-927D-FDFF01E30935@microsoft.com...
> Hi,
>
> There is a ListItemCollection containing ListItems (of course), each of
whose Value and Text properties have been set. The Value and Text's values
are different.
[quoted text, click to view] >
> i.e.
> ListItem[0].Text = "Name0";
> ListItem[0].Value = "ID0";
>
> ListItem[1].Text = "Name1";
> ListItem[1].Value = "ID1";
>
> The above ListItem(s) are a part of the ListItemCollection that I
mentioned before.
>
> Then I set the DataSource of a DropDownList (on my page) to the
ListItemCollection and bind it.
>
> DropDownList.DataSource = ListItemCollection;
> DropDownList.DataBind();
>
> But the DropDownList does not pick up the Value and the Text properties
separately. It sets the Text Property of each ListItem as the Value also.
>
> On the other hand if I iterate through the ListItemCollection and Add()
each ListItem to the DropDownList, then the Value and Text fields are picked
separately.
[quoted text, click to view] >
> i.e.
>
> foreach(ListItem in ListItemCollection)
> {
> DropDownLIst.Items.Add(ListItem);
> }
>
> Can someone tell me why this is happening and if this is some sort of
known issue in .NET?
>
> RAMADU