摘要: string connStr=ConfigurationManager.ConnectionStrings["Connection"].ToString(); //执行查询语句并返回一个表 public DataTable ExecuteDataTable(string sql,params SqlParameter[] parameters) ... 阅读全文
posted @ 2017-03-23 16:53 SkyLeo 阅读(134) 评论(0) 推荐(0) 编辑
摘要: dropdownlist1.Items.Clear(); 全部删除 dropdownlist1.Items.Remove(要删除的选项); dropdownlist1.Items.RemoveAt(要删除的选项的索引); 阅读全文
posted @ 2017-03-23 16:51 SkyLeo 阅读(114) 评论(0) 推荐(0) 编辑
摘要: ScriptManager.RegisterStartupScript(this.Page, this.GetType(), "onekey", "alert('登陆失败')", true); 阅读全文
posted @ 2017-03-23 16:50 SkyLeo 阅读(84) 评论(0) 推荐(0) 编辑
摘要: Bitmap bmp = new Bitmap(@"E:\TrainingPlatform\TrainingPlatform\Images\11floor.jpg"); MemoryStream ms = new MemoryStream(); bmp.Save(ms, System.Drawing.Imaging.Imag... 阅读全文
posted @ 2017-03-23 16:49 SkyLeo 阅读(621) 评论(0) 推荐(0) 编辑