转自:http://bytes.com/topic/asp-net/answers/443065-textbox-value-change-select-other-item-dropdownlistYou need to add the below javascript in ur html se...
分类:
其他好文 时间:
2015-04-28 17:50:31
阅读次数:
159
转自http://blog.csdn.net/iqv520/article/details/44191861. selectedIndex——指的是dropdownlist中选项的索引,为int,从0开始,可读可写2. selectedItem——指的是选中的dropdownlist中选项,为Lis...
分类:
其他好文 时间:
2015-04-25 15:05:03
阅读次数:
170
最近做一个页面需要用到这个两个控件,之前虽然看过,但是没有动手实践过。突然要做这么一个页面,并用上,真的有点着急。于是乎,网上疯狂找datagrid与DropDownList 的例子,找了很多很多,看了,并实践了,但是不是我想要的效果。昨天晚上琢磨了好几个小时,都没有弄好,后来干脆不弄了,躺在床.....
分类:
其他好文 时间:
2015-04-18 12:43:54
阅读次数:
142
1 , dropdownlist: 下拉框 属性items 列表集合, 里面的每一个元素是一个 listitem 。 注注注注注注 :::::: listitem的 text 、value属性, text是显示在下拉框中的,value是隐藏的。2 ,checkboxli...
分类:
Web程序 时间:
2015-04-16 23:19:12
阅读次数:
267
仅供参考使用!!!!!! protected void Page_Load(object sender, EventArgs e) { private string selectCourse; if (!IsPostBack) { ...
分类:
Web程序 时间:
2015-04-16 23:12:21
阅读次数:
145
protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e){ string FstWeekEnd,FstWeekEndday; if (e.Row.RowType == DataControlRowType...
分类:
其他好文 时间:
2015-04-13 22:38:53
阅读次数:
142
25.组合框控件组合框(comboBox)控件是一个文本框和一个列表框的组合。1.常用的属性。a.DropDownStyle,设置组合框的样式,有三种可选值:Simple:没有下拉框,所以不能选择,可以输入,与Text控件类似;DropDown:具有下拉框,可以选择和输入;DropDownList:具有下拉框,只能..
如何获得中EmptyDataTemplate的控件的值((TextBox)((Table)GridView1.Controls[0]).Rows[0].FindControl("BankCard")).Text;((DropDownList)((Table)GridView1.Controls[0]...
分类:
其他好文 时间:
2015-04-13 12:39:19
阅读次数:
98
ListBox,CheckBoxList,DropDownList,RadioButtonList的常见用法四个都是选择控件,用法大同小异,基本都是指定键值对:直接加选择项: void way1() { DropDownList1.Items.Add("c#"); DropDownL...
分类:
其他好文 时间:
2015-04-10 19:45:12
阅读次数:
140
动态绑定方法一:动态绑定数据库中的字段。SqlConnection conn = UtilitySqlClass.OperateDataBase.ReturnConn();string strSQL = "select * from CompanyType";SqlDataAdapter ada =...
分类:
其他好文 时间:
2015-04-04 13:30:23
阅读次数:
81