hi,
i have a generic list which has a collection of data
But when i bind in dropdownlist, i cant bind it. I mean it means the whole list, whereas i want only the value from the list to be displayed.
How do i do that
regards
cmrhema
i have a generic list which has a collection of data
Code:
List<Keys> olistkeys=Keys.GetKeysByEmailId(txtEmail.Text);
ddlKeys.DataSource = olistkeys;
ddlKeys.DataBind();
How do i do that
regards
cmrhema
Comment