摘要: dropdownlist绑定的二种方法第一种方法: string ConnString = ConfigurationSettings.AppSettings["ConnectionString"]; //创建一个SqlConnection SqlConnection Conn = new SqlConnection( ConnString ); string SQL_Select = "select id, ItemName from DDLItem order by id desc"; //构造一个SqlDataAdapter SqlDataAdap 阅读全文
posted @ 2011-06-08 20:45 十年如一 阅读(156) 评论(0) 推荐(0) 编辑