2016年11月7日
摘要: 一、linq高级查 1.模糊查(字符串包含) 2.查开头(StartsWith,以XX开头) 3.查结尾 4.查出来的数组长度(个数) 5.最大值:Max(r => r.price); 6.最小值:Min(r => r.price); 7.平均值:Average(r => r.price); 8.求 阅读全文
posted @ 2016-11-07 20:44 懒人起烂名 阅读(4123) 评论(1) 推荐(1) 编辑
摘要: void Button1_Click(object sender, EventArgs e) { string aaaa = Request["aaa"]; Label1.Text = aaaa; string[] all = aaaa.Split(','); } 阅读全文
posted @ 2016-11-07 20:21 懒人起烂名 阅读(222) 评论(0) 推荐(0) 编辑