我有一个 Gridview,用于显示客户付款数据。默认情况下,我使用一些仅在 RowDataBound 事件中很容易获得的检查来更改包含过期客户的任何行的显示。我想添加选项以根据输入过滤掉数据以仅显示过期或未过期的行。做这个的最好方式是什么?
我在想一些事情:
protected void gvTenantList_RowDataBound(object sender, GridViewRowEventArgs e)
{
if (null != e.Row.DataItem)
{
DataRowView rowView = (DataRowView)e.Row.DataItem;
if (hsPastDueLeases.Contains((int)rowView["LeaseID"]))
{
e.Row.CssClass += " pinkbg";
if (showCurrentOnly) //code to prevent showing this row
}
else if (showPastDueOnly) //code to prevent showing this row
}
}
基本上,我需要知道什么属于//code to prevent showing this row