为DropDownList添加新项

2024-01-12 15:08
文章标签 dropdownlist 新项

本文主要是介绍为DropDownList添加新项,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

为DropDownList添加新项

一、DropDownList1.Items.Insert 与 DropDownList1.Items.Add 的区别

Add方法是把列表项插入下拉列表的尾部!
Insert方法是把列表项插入下拉列表的指定位置!

二、
ListItem 有两个属性 Text 用于显示的 Value 用于记录值,SelectedValue 是取选中项的 ListItem 的 Value 值, Items[DropDownList1.SelectedIndex].Text 是指定索引处 ListItem 的 Text 值,两者是不一样的,如果要取选中项的 Text, 可以用 SelectItem.Text

--------下面用两种方法为大家展示

1.用Add()方法添加

在这里插入图片描述

解释:Add()方法内放入需要添加的列表项即可!

2.用Insert()方法添加
在这里插入图片描述

解释:Insert()方法第一个参数为指定位置,第二个参数为你要添加的列表项。

这篇关于为DropDownList添加新项的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/598258

相关文章

实现 DropDownList的CheckBox多选

1.css文件         .DivClose         {             display: none;             position: absolute;             width: 250px;             height: 220px;             border-style: solid;

【转载百度经验】DropDownList控件赋值

DropDownList控件赋值简而言之,就是取出数据,通过DropDownList.Items.Add(),循环赋值。 具体步骤如下:     ①根据业务查出DropDownList控件的DataSet,从DataSet实例中取出DataTable。     ②然后循环遍历DataTable的DataRow,从对应的DataRow对象中取出要显示的字段和序列的字段,创建new Lis

Jquery中对radiobutton、checkbox、dropdownlist等一些基本操作总结

最近在写一些JS,但苦于这些东西不是每次都要用,经常容易忘记,搞的每次都要去网上搜集资料,现记下来以备不时之需: radiobutton: <input id="sc" type="radio" name="Type" value="Service Component" οnclick="typeChange()">Service Component <input id="t

在ASP.NET中用三个DropDownList控件方便的选择年月日

private void Page_Load(object sender, System.EventArgs e) { DateTime tnow=DateTime.Now;//现在时间 ArrayList AlYear=new ArrayList(); int i; for(i=2002;i<=2010;i++) AlYear.Add(i); ArrayList AlMonth=n

通过js获取DropDownList控件的Value值

方法一: document.getElementById( "DDLID").options[document.getElementById( "DDLID")..selectedIndex].value;   方法二: var   ddl   =   document.getElementById( "ddlBusCode ") var   index   =   ddl.seleted

二级DropDownList控件源码

二级DropDownList控件源码 将源码放于此,不过感觉并不是很满意。 有一个小问题,就是获取小类的值,因为控件中加入了一个功能,就是如果在初始时带入小类的值时,控件会自动将小类相应的选项选中,并带动大类的选项,这样就一个冲突:获取小类的值与初始小类的值带来的影响。 又开始忙了,再琢磨一下后修改。 源码如下: using  System.Text; using  System.

DropDownList的年月日三联动处理方法

Dropdownlist的基本操作:1、 获得当前选中项的序号document.getElementById(“name”).selectedIndex;2、 获取当前选中项的值Document.getElementById(“name”).value;  年月日三联动处理方法: 注册客户端事件:          this.DropDownList1.Attributes.Add("onch

DropDownList控件的使用

使用asp.net这么长时间了,DropDownList控件的这种用法还真的没有使用过,在研究Microsoft的ajax时看见里面的Demo中竟然有这种用法,一测试还是真的 。         <asp:DropDownList ID="DropDownList1" runat="server" AutoPostBack="True" OnSelectedIndexChanged="DropD

asp.net jquery ajax数据操作 DropDownList级联

1、定义一个类 CityCounty.cs文件,如下: using System;using System.Collections.Generic;using System.Linq;using System.Web;using System.Runtime.Serialization;/// <summary>///CityCounty 的摘要说明/// </summary>

asp.net Repeater等数据控件模版内部2个DropDownList控件级联

1、新建一个从DropDownList继承的扩展类CommandableDropDownList.cs,代码如下: using System;using System.Collections.Generic;using System.Linq;using System.Web;using System.ComponentModel;using System.Web.UI.WebCo