我想在Visibility
之后启用此TemplateField
的{{1}}。有谁知道怎么做?
6 months
答案 0 :(得分:0)
你可以这样做,
在RowCommand事件中,将dateaftersixmonth的当前日期检查为:
if(DateTime.Now >= dateaftersixmonth)
{
YourGridView.Columns[columnIndex].Visible = true; //columnIndex= column to show after six month.
}
else
{
YourGridView.Columns[columnIndex].Visible = false;
}