Quantcast
Browsing latest articles
Browse All 4 View Live

C# - Combobox - valores

Agradeço a todos pelas dicas.Ficou assim:<td><asp:DropDownList ID="cboGrupo" runat="server"></asp:DropDownList></td> //preenche a combo dos grupos cboGrupo.DataSource =...

View Article


C# - Combobox - valores

Olá Ramon, Delete esses DataTextField, DataValueField e OnDataBound. No CodeBehind, você fará sua consulta ao banco e anexar no datasource do drop.SqlCommand cmd = new SqlCommand(); cmd.CommandText =...

View Article


C# - Combobox - valores

Trata isso no databound da drop fica melhor  protected void SuaDrop_DataBound(object sender, EventArgs e)    {        ((DropDownList)sender).Items.Insert(0, new ListItem("-- Selecione --", "0"));...

View Article

C# - Combobox - valores

Olá pessoal,Tenho uma combobox:<asp:DropDownList ID="cboGrupo" runat="server" DataTextField="Nome" DataValueField="Grupo" OnDataBound=""><asp:ListItem Selected="True" Text="-- Selecione --"...

View Article
Browsing latest articles
Browse All 4 View Live