如图,是ASP.NET中的一个DropDownList控件,已知该控件的AutoPostBack属性、EnableViewState属性都为True,该控件所在的页面的部分代码如下,在图示状态下,用户单击关羽项后,在页面的输出结果是()。2、ProtectedSystem..Web.UI.WebControls.DropDownListDropDownList1;ProtectedSystem..Web.UI.WebControls.ButtonButton1;stringname=”诸葛亮”;privatevoidPage_load(Objectsender,System.EventArgse){if(!this.IsPostBack){string[]names=newstring[]{“张飞”,”关羽”,”刘备”}this.DropDownList1.DataSource=names;this.DataBind();}}PrivatevoidDropDownList1_SelectedIndexChanged(objectsender,System.EventArgse){If(this.DropDowmList1.SelectedItem!=null){name=this.DropDownList1.SelectedItem.Text;}Response.Write(name)}
举一反三
- ASP.NET中,以下对DropDownList服务器控件描述错误的是( )。 A: DropDownList服务器控件不支持多重选择 B: 可以用SelectedIndex属性或者SelectedItem属性来判定哪一项被选取 C: 当用户更改选项时会引发SelectedIndexChanaged事件 D: 允许用户在运行时输入文本
- asp.net中,以下对DropDownList服务器控件描述错误的是()。 A: DropDownList服务器控件不支持多重选择 B: 可以用SelectedIndex属性或者SelectedItem属性来判断哪一项被选取 C: 类似WinForm中的ComboBox控件,允许用户在运行时输入文本 D: 当用户更改选项时会引发SelectedIndexChanaged事件
- 在一个ASPX页面的Page_Load事件中,编写了如下代码,则执行该页面后,将在页面中输出()。privatevoidPage_Load(objectsender,System.EventArgse){Response.Write(“欢迎光临”);Response.End();Response.Write(“欢迎下次光临”);} A: 欢迎光临 B: 欢迎下次光临 C: 欢迎光临欢迎下次光临 D: 欢迎光临欢迎下次光临
- 下列关于Web服务端DropDownList控件的说法不正确的是()。 A: DropDownList控件显示为下拉列表框 B: DropDownList控件只能实现单选 C: DropDownList控件的选项中可以有默认选项 D: DropDownList控件的选项不能动态设定
- 在一个ASPX页面的Page_Load事件中,编写了如下代码,则执行该页面后,将在页面中输出()。privatevoidPage_Load(objectsender,System.EventArgse){Response.Write(“欢迎光临”);Response.End();Response.Write(“欢迎下次光临”);} A: A欢迎光临 B: B欢迎下次光临 C: C欢迎光临欢迎下次光临 D: D欢迎光临欢迎下次光临