文件名称:c#.net常用的绑定控件方法
文件大小:29KB
文件格式:CS
更新时间:2012-01-07 15:04:08
绑定控件方法
绑定控件方法 public static void Bind_DropDownList(string sqlstr,DropDownList templist) { DataTable dt1=data.GetDataTable_oracleclient(sqlstr); foreach(DataRow row in dt1.Rows) { templist.Items.Add(row[0].ToString ()); } dt1.Dispose(); }