Is there some elegant way to add an empty option to a DropDownList bound with a LinqDataSource?
|
feedback
|
|
Here's how to add a value at the top of the list. It can be an empty string, or some text.
Be sure to set the DropDownList's AppendDataBoundItems=True. | |||||||||
feedback
|
|
I'd provide an extension method on
Its sort of linq-y, as it uses the linq extension method Union. Its a little cleaner than doing this:
| |||
|
feedback
|
|
Markup:
Code behind:
protected void ddlQualQuestion_DataBound(object sender, EventArgs e) | ||||
|
feedback
|