2016年1月2日

20151217JS便签

摘要: JS便签: 根据一个数值来改变Repeater行数的颜色 添加成功:Literal1.Text = "" 模糊查询: string ids = TextBox1.Text; string name = TextBox2.Text; DataCl... 阅读全文

posted @ 2016-01-02 19:07 路人甲zzz 阅读(146) 评论(0) 推荐(0) 编辑

20151216Repeater

摘要: Repeater 用法:1.绑定数据源 Repeater1.DataSource = context.Info; Repeater1.DataBind(); 2.造项模版: 头模版:Header... 阅读全文

posted @ 2016-01-02 19:06 路人甲zzz 阅读(160) 评论(0) 推荐(0) 编辑

20151215单选按钮列表,复选框列表:CheckBoxList

摘要: 单选框:RadioButton GroupName:组名,如果要实现单选效果每个单选按钮的组名必须一样 是否被选中 RadioButton.checked单选按钮列表:RadioButtonList 属性:RepeatDirection:Vertical上下 Honizontal左... 阅读全文

posted @ 2016-01-02 19:05 路人甲zzz 阅读(303) 评论(0) 推荐(0) 编辑

20151214下拉列表:DropDownList

摘要: 注意: 1.如果用事件的话就要把控件的AutoPostBack设置成true 2.防止网页刷新用一个判断 if (!IsPostBack)//判断是第一个开始还是取的返回值 { ... 阅读全文

posted @ 2016-01-02 19:04 路人甲zzz 阅读(164) 评论(0) 推荐(0) 编辑

导航