摘要: 定义有序列表:<ol></ol> (助记,order list)定义无序列表:<ul></ul>(unorder list)定义列表项:<li></li>(list)<p>有序列表:</p><ol> <li>打开冰箱门</li> <li>把大象放进去</li> <li>关上冰箱门</li></ol><p>无序列表:</p><ul> <li>雪碧</li 阅读全文
posted @ 2013-05-21 21:18 罗汉果 阅读(150) 评论(0) 推荐(0) 编辑
摘要: 初次接触:1: using(类型 d =new ....) {.......}2: cmd.CommandText=""; cmd.ExecuteNonQuery();★ExecuteNonQuery一般用来执行Upadate\Delete\Insert语句 1 private void button1_Click(object sender, RoutedEventArgs e) 2 { 3 using(SqlConnection con=new SqlConnection( 4 "dat... 阅读全文
posted @ 2013-05-20 21:17 罗汉果 阅读(334) 评论(0) 推荐(0) 编辑
摘要: 2012-3-14,每周一课《系统思维与企业管理》……我理解的,仅一页PPT,那就只记这一页吧。 阅读全文
posted @ 2013-05-19 23:22 罗汉果 阅读(193) 评论(0) 推荐(0) 编辑
摘要: head first C# my ebook, page181A special case: Arrays数据定义:Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->bool[]myArray;myArray=newbool[15];myArray[4]=true;class MenuMakerCode highlighting produced by Actipro CodeHighlighter (freeware)http://www.C 阅读全文
posted @ 2013-05-19 23:17 罗汉果 阅读(155) 评论(0) 推荐(0) 编辑