dropdownlist 绑定数组

// 方法一
private   void  ddlBindFix(DropDownList ddl, string [] DataText, string [] DataValue)
  {
   
for ( int  i  =   0 ;i  <  DataText.Length;i ++ )
   {
    ListItem list  
=   new  ListItem();
    list.Text 
=  DataText[i];
    list.Value 
=  DataValue[i];
    ddl.Items.Add(list);
   }
  }

private   void  ddlBindFix(DropDownList ddl, string [] DataText, string [] DataValue, string  txt, string  values)
  {
   
for ( int  i  =   0 ;i  <  DataText.Length;i ++ )
   {
    ListItem list  
=   new  ListItem();
    list.Text 
=  DataText[i];
    list.Value 
=  DataValue[i];
    ddl.Items.Add(list);
   }
   ddl.Items.Insert(
0 new  ListItem(txt, values));
 }
 
 
// 方法二
private   void  ddlBindFix(DropDownList ddl, string [] DataText, string [] DataValue)
  {
   
for ( int  i  =   0 ;i  <  DataText.Length;i ++ )
   {
      ddl.Items.Add(
new  ListItem(DataText[i],DataValue[i]));
   }
  }

你可能感兴趣的:(list)