如何隐藏空数据绑定DropDownList

时间:2016-10-21 14:50:57

标签: c# hide dropdown databound

我有一个数据绑定DropDownList,我需要一个只显示DropDownList的代码,如果数据库中有值,如果没有值/空DropDownlist则不应该可见。

我试过了:

   if (ddlFruits.Items.Count == 1)
     {
         ddlFruits.Visible = false;
     }
     else
     {
         ddlFruits.Visible = true;

     }

1 个答案:

答案 0 :(得分:0)

ddlFruits.Visible = ddlFruits.Items.Count > 0