随笔分类 -  ASP.NET

关于所有运用了ASP.NET这个技术上的项目遇到的技术点分享
摘要:protected void chklst_SelectedIndexChanged(object sender, EventArgs e){ //获取当前触发(被点击)的CheckBox的Index string s = Request.Form["__EVENTTARGET"]; int index = Convert.ToInt32(s.Substring(s.LastIndexOf("$") + 1)); //获取当前触发(被点击)的CheckBox的Text和Value string selectText = this.chklst.Items 阅读全文
posted @ 2013-04-14 20:31 钱晓峰 阅读(403) 评论(0) 推荐(0)