Well, I don't have any variable define anywhere else other than what is showing in my code behind showing above. Here's all I have in my .aspx page.
<form id="cldrBoardMeeting" runat="server">
<asp

ataList ID="DataList1" runat="server" DataSourceID="slqBoardMtng">
<ItemTemplate>
mtgDateEnd:
<asp:Label ID="mtgDateEndLabel" runat="server" Text='<%# Eval("mtgDateEnd") %>'>
</asp:Label><br />
mtgDateStart:
<asp:Label ID="mtgDateStartLabel" runat="server" Text='<%# Eval("mtgDateStart") %>'>
</asp:Label><br />
<br />
</ItemTemplate>
</asp

ataList>
<asp:Calendar ID="Calendar1" runat="server" BackColor="White" BorderColor="Black"
BorderStyle="Solid" CellSpacing="1" Font-Names="Verdana" Font-Size="9pt" ForeColor="Black"
Height="250px" NextPrevFormat="ShortMonth" Width="330px" OnDayRender="calDayRender">
<SelectedDayStyle BackColor="#333399" ForeColor="White" />
<TodayDayStyle BackColor="#999999" ForeColor="White" />
<DayStyle BackColor="#CCCCCC" />
<OtherMonthDayStyle ForeColor="#999999" />
<NextPrevStyle Font-Bold="True" Font-Size="8pt" ForeColor="White" />
<DayHeaderStyle Font-Bold="True" Font-Size="8pt" ForeColor="#333333" Height="8pt" />
<TitleStyle BackColor="#333399" BorderStyle="Solid" Font-Bold="True" Font-Size="12pt"
ForeColor="White" Height="12pt" />
</asp:Calendar>
</form>