In the Calendar DayRender Event
VB.NET
If e.Day.IsOtherMonth = True Then
e.Cell.Text = ''
End If
C#
if (e.Day.IsOtherMonth = true)
{
e.Cell.Text = '';
}
In the Calendar DayRender Event
VB.NET
If e.Day.IsOtherMonth = True Then
e.Cell.Text = ''
End If
C#
if (e.Day.IsOtherMonth = true)
{
e.Cell.Text = '';
}
Share with