标签: asp.net-mvc-4 datasource webgrid
在页面加载时,如果有空数据源或没有记录,我需要在我的WebGrid中显示默认文本。
@if (Model.CustomerList.Count == null || Model.CustomerList.Count == 0) { <span>No records found.</span> }