↧
Re: Setting a value in a Dropdown List
Dim value as integer = 2 urDropdownList.Items.FindByValue(value).Selected = True I got this to work
View ArticleRe: Setting a value in a Dropdown List
You may try this: DDL.SelectedItem.Text = " the default description field"; DDL.SelectedItem.Value = "the key value";
View ArticleSetting a value in a Dropdown List
I have a form that I use to update company details. I pull all the company information into the form. On the form I have a dropdown list. I've set both the datavaluefield (to a primary key value of a...
View Article