如何从代码后面检查表单视图是否为空?我已经尝试过DataItemCount == 0但它似乎没有用。感谢
if (FormView_imgBG.DataItemCount == 0)
{ //do stuff
}
else
{
// do other stuff
}
答案 0 :(得分:3)
人们说检查DataItemCount属性的最佳位置是在FormView.DataBound事件中。
protected void FormView1_DataBound(object sender, EventArgs e) {
if (FormView1.DataItemCount == 0) {
}
else {
}
}