数据库连接
OracleConnection conn = new OracleConnection("Data Source=duke;Persist Security Info=True;User ID=gxjd;Password=gxjd;");
conn.Open();
OracleCommand cmd  = new OracleCommand();
cmd.Connection = conn;            
String sqlstr  = "select class,unitid from unit ";
cmd.CommandText = sqlstr;
OracleDataAdapter  sqlda  =new OracleDataAdapter(cmd);//'建立临时表存储省份数据 
DataTable Province = new DataTable();
sqlda.Fill(Province);
Response.Write("将class数据绑定到DropDownList1控件");//~~~~~~~~~~~~~就是这里,需要把class绑定输出//                                                 
Response.End(); //'将省份数据绑定到DropDownList1控件 
  DropDownList1.DataSource = Province;
  DropDownList1.DataValueField = "unitid";
  DropDownList1.DataTextField = "class";
  DropDownList1.DataBind();////////
Response.Write("将class数据绑定到DropDownList1控件");这里不知道里面该怎么写..