I'm using what I assume is the VB equivalent:
Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
If IsPostBack = True Then
DayPilotCalendar1.StartDate = DateTime.Today
DayPilotCalendar1.DataSource = GetDataItem()
DataBind()
End If
End Sub
but it does not work; it sets the dates to "1/1/0001", "1/2/001", etc.