题目内容
如图,是ASP.NET中的一个DropDownList控件,已知该控件的AutoPostBack属性、EnableViewState属性都为True, 该控件所在的页面的部分代码如下,在图示状态下,用户单击关羽项后,在页面的输出结果是()。 2、 Protected System..Web.UI.WebControls.DropDownList DropDownList1; Protected System..Web.UI.WebControls.Button Button1; string name=”诸葛亮”; private void Page_load(Object sender,System.EventArgs e){ if(!this.IsPostBack){string []names = new string[]{“张飞”,”关羽”,”刘备”}this.DropDownList1.DataSource = names;this.DataBind();} } Private void DropDownList1_SelectedIndexChanged(object sender,System.EventArgs e) { If(this.DropDowmList1.SelectedItem!=null){ name=this.DropDownList1.SelectedItem.Text; } Response.Write(name) }
查看答案
搜索结果不匹配?点我反馈