欢迎来到天天文库
浏览记录
ID:24634856
大小:55.00 KB
页数:4页
时间:2018-11-15
《asp.net 2.0中给dropdownlist服务器控件添加项的新方法--》由会员上传分享,免费在线阅读,更多相关内容在工程资料-天天文库。
1、ASP.NET2.0中给DropDownList服务器控件添加项的新方法>>在ASP.2.0中,可以在数据绑定时,通过设置DropDos属性为true,在数据绑定之前添加一个新的项目,并且这个新加的项目会保存在ViewState之中。下面就是一个实现的例子:C#代码<%...PageLanguage="C#"%>12345678910...下一页>>>>>>这篇文章来自..,。<%...ImportNamespace="System.Data"%><!DOCTYPEhtmlPUBLIC"-//L1.0Transitional//EN"".l1/
2、DTD/xhtml1-transitional.dtd"><scriptrunat="server">上一页12345678910...下一页>>>>>>这篇文章来自..,。...ICollectionCreateDataSource()...{DataTabledt=nens.Add(nen("id",typeof(Int32)));上一页12345678910...下一页>>>>>>这篇文章来自..,。dt.Columns.Add(nen("text",typeof(string)));for(inti=0;i<6;i++)...{上
3、一页12345678910...下一页>>>>>>这篇文章来自..,。dr=dt.NewRow();dr[0]=i;dr[1]="列表项目"+i.ToString();dt.Rows.Add(dr);}DataViewdv=newDataView(dt);returndv;}上一页12345678910...下一页>>>>>>这篇文章来自..,。protectedvoidButton1_Click(objectsender,EventArgse)...{Response.Write("<li>DropDo.Text);上一页1234567891
4、0...下一页>>>>>>这篇文章来自..,。Response.Write("<li>DropDo.Text);}protectedvoidPage_Load(objectsender,EventArgse)...上一页12345678910...下一页>>>>>>这篇文章来自..,。{if(!IsPostBack)...{DropDos=true;DropDos.Add(ne("--请选择一个选择项--",""));上一页12345678910...下一页>>>>>>这篇文章来自..,。DropDownList2.DataSour
5、ce=DropDownList1.DataSource=CreateDataSource();DropDownList2.DataTextField=DropDownList1.DataTextField="text";DropDownList2.DataValueField=DropDownList1.DataValueField="id";DropDownList1.DataBind();DropDownList2.DataBind();}}</scrip上一页12345678910...下一页>>>>>>这篇文章来自..,。t><htmlxml
6、ns=".l"><headrunat="server"><title>DropDoid="form1"runat="server"><asp:DropDownListID="DropDownList1"runat="server">上一页12345678910...下一页>>>>>>这篇文章来自..,。
此文档下载收益归作者所有