如何从代码后面检查FormView是否为空

时间:2014-08-02 18:15:16

标签: c# asp.net formview

如何从代码后面检查表单视图是否为空?我已经尝试过DataItemCount == 0但它似乎没有用。感谢

if (FormView_imgBG.DataItemCount == 0)

            { //do stuff
            }
            else 

            {                 
            // do other stuff
            }

1 个答案:

答案 0 :(得分:3)

人们说检查DataItemCount属性的最佳位置是在FormView.DataBound事件中。

    protected void FormView1_DataBound(object sender, EventArgs e) {
        if (FormView1.DataItemCount == 0) {
        }
        else {
        }
    }