esiste qualche controllo ... ?

Se si tratta del mese corrente, mettendo un calendario nella pagina e facendo:

codice:
    Private Sub cal_DayRender(ByVal sender As Object, ByVal e As System.Web.UI.WebControls.DayRenderEventArgs) Handles cal.DayRender
        If Not e.Day.IsOtherMonth Then
            Response.Write(e.Day.Date.ToLongDateString)
        End If
    End Sub
...avrai tutti i giorni in formato data estesa.