1. 打开新的窗口并传送参数: 传送参数:response.write("<script>window.open(’*.aspx?id="+this.DropDownList1.SelectIndex+"&id1="+...+"’)</script>") 接收参数:string a = Requ.....
分类:
Web程序 时间:
2015-05-09 01:10:23
阅读次数:
254
第一种,把Array数组绑到dropdownlist 程序代码string[] Month =new string[7]{ "January", "February", "March", "April", "May", "June", "July" }; this.DropDownList1.DataSource = Month; this.DropDownList1....
分类:
Web程序 时间:
2015-04-28 21:10:04
阅读次数:
157
ListBox,CheckBoxList,DropDownList,RadioButtonList的常见用法四个都是选择控件,用法大同小异,基本都是指定键值对:直接加选择项: void way1() { DropDownList1.Items.Add("c#"); DropDownL...
分类:
其他好文 时间:
2015-04-10 19:45:12
阅读次数:
140
1.html 车身颜色: 2.code protected void Page_Load(object sender, EventArgs e) ...
1. 打开新的窗口并传送参数: 传送参数:response.write("<script>window.open(’*.aspx?id="+this.DropDownList1.SelectIndex+"&id1="+...+"’)</script>") 接收参数:string a = Req...
分类:
Web程序 时间:
2015-01-28 19:37:17
阅读次数:
205
个人笔记当设置DropDownList的AppendDataBoundItems属性为true,是将数据绑定项追加到静态声明的列表上,即在绑定之前可加入静态列表项。例如:前台这么写:1 2 3 后台:1 if(!IsPostBack)2 {3 DropDownList1.DataSo...
分类:
移动开发 时间:
2014-12-31 19:50:11
阅读次数:
221
此功能可用来设置系统的不同的标题 private void SelectSystem() { ConfigHelper.Title = DropDownList1.SelectedText; ConfigHelper.SaveAll(); }
分类:
其他好文 时间:
2014-10-28 17:00:30
阅读次数:
235
某一天在网上看到有人写了这样一段代码:protected void Page_Load(object sender, EventArgs e) { if (!IsPostBack) { DropDownList1.AutoPostBack = true; } ...
分类:
其他好文 时间:
2014-10-28 00:34:29
阅读次数:
165
1.使用代码添加数据 //1.1使用代码添加数据 ListItem item = new ListItem(".net","1"); this.DropDownList1.Items.Add(item); item...
分类:
其他好文 时间:
2014-09-18 14:42:04
阅读次数:
287
var ddl = document.getElementById("DropDownList1"); alert(ddl.selectedIndex);//选择索引值 alert(ddl.options[ddl.selectedIndex].value)...
分类:
Web程序 时间:
2014-09-13 17:04:05
阅读次数:
149