Hi, everyone!
Maybe I'm just having a brain fart, but I can't recall what I'm doing wrong. I have a custom control that takes two values: CurrentWeekReference and PreviousWeekReference.
On my ASPX page, I have the control created like this:
<asp:Panel ID="plForm" runat="server">
<table class="tblDateSelect">
<tr>
<td>First Date:</td>
<td>
<asp:DropDownList ID="ddlFirstWeek" runat="server"></asp:DropDownList>
</td>
</tr>
<tr>
<td>Second Date:</td>
<td>
<asp:DropDownList ID="ddlSecondWeek" runat="server"></asp:DropDownList>
</td>
< ...
Go to the complete details ...