A
Andrea Williams
I have a drop down control that I've added a list item that has a value of
zero and the text name is "[Select One]". And it shows up like it's
supposed to until I bind a dataset to it. The binding seems to remove the
list Item that I added. Is there something I have to set to keep the list
Item that I added via ASPX code? Has anyone been successful in having a
defuatl selection that is not in the data set?
ASPX code:
<asp
ropDownList id="cboConferenceID" runat="server" AutoPostBack="True">
<asp:ListItem Value="0">[Select One]</asp:ListItem>
</asp
ropDownList>
ASP C# code-behind:
this.cboConferenceID.DataSource = dsGeneric;
this.cboConferenceID.DataTextField = vstrDataTextField;
this.cboConferenceID.DataValueField = vstrDataValueField;
this.cboConferenceID.DataBind();
Thanks in advance,
Andrea
PS: VS.NET 2003 on WIN 2000
zero and the text name is "[Select One]". And it shows up like it's
supposed to until I bind a dataset to it. The binding seems to remove the
list Item that I added. Is there something I have to set to keep the list
Item that I added via ASPX code? Has anyone been successful in having a
defuatl selection that is not in the data set?
ASPX code:
<asp

<asp:ListItem Value="0">[Select One]</asp:ListItem>
</asp

ASP C# code-behind:
this.cboConferenceID.DataSource = dsGeneric;
this.cboConferenceID.DataTextField = vstrDataTextField;
this.cboConferenceID.DataValueField = vstrDataValueField;
this.cboConferenceID.DataBind();
Thanks in advance,
Andrea
PS: VS.NET 2003 on WIN 2000