Initializing a Drop Down List control from a set of hardcoded values
You could always use the wizard built into collections function of the property sheet, or you could write a bit of code which might look something like this
1 | ddlSsoType.Items.Insert(0, New ListItem("RQ", "R")) |
In the listitems, the first value is what is shown on the dropdown control, the second value is what is returned to the code as the value of the dropdown.