I am trying to make a user control that will select a month and year. The main pagew has a gird view th at takes the month and year and retrieves on those values. SO Idont want it to update until the user presses OK on the user control.
the main page has a month and year label, and a button that opens a modal popup control.
<div style="width:400px; margin:auto;">
Rides logged for: <asp:Label ID="lblmonth" runat="server" />
<asp:Label ID="lblyear" runat="server" />
<asp:ImageButton ID="ibpickdates" runat="server" OnClick="ibpickdates_Click" ImageUrl="~/Images/Icons/calendar_2.png" />
</div></div>
the user control page;
<%@ Control Language="C#" AutoEventWireup="true" CodeFile=& ...
Go to the complete details ...