visual tutorial studio sqlserver new net mvc existing asp and c# asp.net add

tutorial - gridview asp net c#



Cómo agregar un artículo a una lista desplegable en asp.net (3)

Tengo el siguiente código

protected void Page_Load(object sender, EventArgs e) { DRPFill(); if (!IsPostBack) { DropDownList1.Items.Add("Add New"); } } public void DRPFill() { if (!IsPostBack) { //Object AddMajor objMajor = new AddMajor(); //Data Table DataTable dtMajor = objMajor.find(); //Data Source DropDownList1.DataSource = dtMajor; DropDownList1.DataValueField = "MajorID"; DropDownList1.DataTextField = "MajorName"; //Data Bind DropDownList1.DataBind(); } }

Quiero agregar el "Agregar nuevo" a un índice específico

pero no estoy seguro de la

sintaxis


¿Qué índice específico? Si desea que ''Agregar nuevo'' sea el primero en la lista desplegable, puede agregarlo a través del código como este:

<asp:DropDownList ID="DropDownList1" AppendDataBoundItems="true" runat="server"> <asp:ListItem Text="Add New" Value="0" /> </asp:DropDownList>

Si desea agregarlo a un índice diferente, quizás el último, intente:

ListItem lst = new ListItem ( "Add New" , "0" ); DropDownList1.Items.Insert( DropDownList1.Items.Count-1 ,lst);


Intenta seguir el código;

DropDownList1.Items.Add(new ListItem(txt_box1.Text));


Intente esto, insertará el elemento de la lista en el índice 0;

DropDownList1.Items.Insert(0, new ListItem("Add New", ""));