摘要:
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... 阅读全文
摘要:
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 = ... 阅读全文
摘要:
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... 阅读全文