WebCalendarView には、月の日を表示されるが実際の月の一部ではない スタイル する機能があります。 OtherMonthDayStyle を設定すると、実際の月の日と他の月の日の差別化に役立ちます。
以下のコードは、OtherMonthDayStyle の BackColor を紫に設定します。
Visual Basic の場合:
Private Sub Page_Load(ByVal sender As System.Object, ByVal e _ As System.EventArgs) Handles MyBase.Load Me.WebCalendarView1.OtherMonthDayStyle.BackColor = Color.Purple End Sub
C# の場合:
private void Page_Load(object sender, System.EventArgs e) { this.WebCalendarView1.OtherMonthDayStyle.BackColor = Color.Purple; }