I have a java script popup calender where I use two dates (From and To) as one of the filters for a GridView display. The dates are only triggered by one of the other two filters.
but if I select the two dates from the calender the page gets reload without the selected date ranges (returns all the available data)
I guess I may need some logic under the if (!Page.IsPostBack)?
<label>From</label>
<asp:TextBox ID="StartDate" OnSelectionChanged="StartDateFrom_SelectedIndexChanged" MaxLength="10" Width="90px" Height='18px' runat="server" AutoPostBack="True"/>
<img src="/Images/calendar.gif" class='calendarImage' id="ShowStartDate" />
<script type="text/javascript">
Calendar.setup({
inputField: "<%=StartDate ...
Go to the complete details ...