0

I want to dynamically fix the calender extender month, so that user can only select the date from the month shown

Note:

  1. calender extender is in gridview.
  2. dynamically set the month on the basis of selected month from combobox located outside gridview.
  3. User should not be able to change month.
4

1 に答える 1

0

月のナビゲーションを非表示にするには、カレンダー コントロールのプロパティShowNextPrevMonth を FALSE に設定します。カレンダーで別の月の日を非表示にするには、DayRender イベントで管理する必要があります。
VB の例。

Protected Sub yourCalendar_DayRender(ByVal sender As Object, ByVal e As DayRenderEventArgs) Handles yourCalendar.DayRender
    If e.Day.IsOtherMonth Then
    e.Cell.Text = ""
    End If
End Sub
于 2012-08-12T15:19:43.913 に答える