private void Page_Load(object sender, System.EventArgs e)
{
// 在此处放置用户代码以初始化页面
//this.DropDownList1.Items.Add("aa") 如果注释掉下面的代码,只使用这一行代码的话也会出现加载2次的现象
if(!IsPostBack)
{
SqlConnection con_components=new SqlConnection(str_components);
try
{
con_components.Open();
SqlCommand cmd_bound1=new SqlCommand("select 类型名称 from 组件功能分类表",con_components);
SqlCommand cmd_bound2=new SqlCommand("select 开发商名称 from 开发商表",con_components);
SqlDataReader dr_1;
SqlDataReader dr_2;
dr_1=cmd_bound1.ExecuteReader();
while(dr_1.Read())
{
this.DropDownList1.Items.Add(dr_1.GetString(0));
}
dr_1.Close();
dr_2=cmd_bound2.ExecuteReader();
while(dr_2.Read())
{
this.DropDownList2.Items.Add(dr_2[0].ToString());
}
dr_2.Close();
con_components.Close();
}
catch
{
}
finally
{
con_components.Close();
}
}
}
谁能帮帮我,急......