The WebMonthView™ by default displays a header across the top right under the caption header. This header displays the day of the week in the format you specify by setting the DayofWeekHeaderFormat property.
You can hide this header if you want to by setting the DayofWeekHeadersVisible property. The code snippet below shows how to do this.
In Visual Basic:
Private Sub Page_Load(ByVal sender As System.Object, ByVal e _ As System.EventArgs) Handles MyBase.Load Me.WebMonthView1.DayOfWeekHeadersVisible = False End Sub
In C#:
private void Page_Load(object sender, System.EventArgs e) { this.WebMonthView1.DayOfWeekHeadersVisible = false; }