DropDownList绑定参考1

 <EditItemTemplate>  
  <asp:DropDownList   id="DropDownList1"   runat="server"   Width="100%"   DataValueField="OID"   DataTextField="cName"   SelectedIndex='<%#   GetDeptIndex(DataBinder.Eval(Container.DataItem,"ID").ToString())   %>'   DataSource="<%#   GetDeptInfo()   %>">  
  </asp:DropDownList>  
  </EditItemTemplate>  
   
  //代码中  
  //数据源  
  public   DataTable   GetDeptInfo()  
  {  
  return   table;  
  }  
   
  //默认绑定索引  
  public   int   GetDeptIndex(string   oid)  
  {  
                                                        ......  
              return   0;  
  }  

posted on 2006-08-28 16:29  路人  阅读(100)  评论(0编辑  收藏  举报

导航