Ejemplo n.º 1
0
 protected void BindDeptOnShip()
 {
     try
     {
         ddlDeptShip.DataSource     = objInsp.Get_Dept_OnShip();
         ddlDeptShip.DataTextField  = "value";
         ddlDeptShip.DataValueField = "id";
         ddlDeptShip.DataBind();
         ddlDeptShip.Items.Insert(0, new ListItem("-Select-", "0"));
     }
     catch (Exception ex)
     {
     }
 }