I have an aspx page with some inputs. In one hand, i have the following two inputs to capture the range of dates:
<asp:TextBox ID="bDate" runat="server" TextMode="Date"></asp:TextBox>
<asp:TextBox ID="eDate" runat="server" TextMode="Date"></asp:TextBox>
and, at the bottom of the page, I have a dropdown that should be filled with a query like
select xxx from table where beginDate >= bDate and endDate <= eDate
The goal is to have this dropdown correctly populated with no need to click on any button.
PS: I have all the code on page load and the query correctly running (only select) so I should only want to know the knowledge to get this done.