工作中点滴记录

永远保持学徒心态

  博客园 :: 首页 :: 博问 :: 闪存 :: 新随笔 :: 联系 :: 订阅 订阅 :: 管理 ::
上一页 1 2 3 4 5 6 7 8 9 ··· 18 下一页

2012年10月18日

摘要: View Code 1 public partial class WebForm4 : System.Web.UI.Page 2 { 3 protected void Page_Load(object sender, EventArgs e) 4 { 5 if (!IsPostBack) 6 { 7 CreateChart(); 8 BindGrid(""); 9 }10 }11 pub... 阅读全文
posted @ 2012-10-18 21:53 梦里故乡 阅读(201) 评论(0) 推荐(0) 编辑

摘要: View Code 1 public partial class WebForm3 : System.Web.UI.Page 2 { 3 protected void Page_Load(object sender, EventArgs e) 4 { 5 CreateChart(); 6 } 7 public void CreateChart() 8 { 9 Chart1.Width = 400;10 Chart1.Height = ... 阅读全文
posted @ 2012-10-18 11:44 梦里故乡 阅读(518) 评论(0) 推荐(0) 编辑

摘要: View Code 1 public partial class WebForm1 : System.Web.UI.Page 2 { 3 protected void Page_Load(object sender, EventArgs e) 4 { 5 if (!IsPostBack) 6 { 7 CreateChart(); 8 } 9 }10 11 public DataTable GetTempData()1... 阅读全文
posted @ 2012-10-18 11:38 梦里故乡 阅读(372) 评论(0) 推荐(0) 编辑

2012年10月17日

摘要: View Code 1 public partial class WebForm1 : System.Web.UI.Page 2 { 3 protected void Page_Load(object sender, EventArgs e) 4 { 5 if (!IsPostBack) 6 { 7 CreateChart(); 8 } 9 }10 11 public DataTable GetTempData()12... 阅读全文
posted @ 2012-10-17 22:49 梦里故乡 阅读(2269) 评论(0) 推荐(0) 编辑

摘要: 2D代码:View Code 1 protected void Page_Load(object sender, EventArgs e) 2 { 3 if (!IsPostBack) 4 { 5 string[] names = new string[] { "A", "B", "C" }; 6 int[] data = new int[] { 100, 400, 100 }; 7 int[] data1 = new int[] ... 阅读全文
posted @ 2012-10-17 19:04 梦里故乡 阅读(294) 评论(0) 推荐(0) 编辑

摘要: View Code 1 public partial class Chartdb3 : System.Web.UI.Page 2 { 3 protected void Page_Load(object sender, EventArgs e) 4 { 5 if (!IsPostBack) 6 { 7 CreateTempChart(); 8 } 9 }10 public DataTable GetTempData()1... 阅读全文
posted @ 2012-10-17 11:53 梦里故乡 阅读(261) 评论(0) 推荐(0) 编辑

摘要: View Code protected void Page_Load(object sender, EventArgs e) { if (!IsPostBack) { CreateTempChart(); } } public void CreateTempChart() { SqlConnection con = new SqlConnection("Data Source=.;Initial Catalog=DEMO;... 阅读全文
posted @ 2012-10-17 11:01 梦里故乡 阅读(287) 评论(0) 推荐(0) 编辑

摘要: View Code protected void Page_Load(object sender, EventArgs e) { if (!IsPostBack) { CreateChartImage(); } } public DataTable GetTempData() { SqlConnection con = new SqlConnection("Data Source=.;Initial Catalog=DEM... 阅读全文
posted @ 2012-10-17 09:56 梦里故乡 阅读(340) 评论(0) 推荐(0) 编辑

摘要: View Code 1 protected void Page_Load(object sender, EventArgs e) 2 { 3 if (!IsPostBack) 4 { 5 int[] date = new int[] { 20, 40, 50, 80, 30, 10, 60 }; 6 int[] test = new int[] { 10, 80, 70, 40, 20, 50, 90 }; 7 Chart1.Wid... 阅读全文
posted @ 2012-10-17 08:39 梦里故乡 阅读(290) 评论(0) 推荐(0) 编辑

2012年10月16日

摘要: View Code 1 protected void Page_Load(object sender, EventArgs e) 2 { 3 if (!IsPostBack) 4 { 5 int[] date = new int[] { 20, 40, 50, 80, 30, 10, 60 }; 6 int[] test = new int[] { 10, 80, 70, 40, 20, 50, 90 }; 7 Chart1.W... 阅读全文
posted @ 2012-10-16 23:29 梦里故乡 阅读(335) 评论(0) 推荐(0) 编辑

上一页 1 2 3 4 5 6 7 8 9 ··· 18 下一页