11/04/2008, 14:05
|
| | Fecha de Ingreso: junio-2007
Mensajes: 253
Antigüedad: 17 años, 7 meses Puntos: 0 | |
Re: Valiar fecha inicio y fecha fin del calendarextender con c#. Gracias por contestar nuevamente, pero yo ya no estoy trabajando con los calendarextender sino con dropdownlist de la siguiente manera:
<label for="inicio">Fecha Inicio:</label>
<asp:DropDownList ID="ddlmesinicio" runat="server" AutoPostBack="True" OnSelectedIndexChanged="ddlmesinicio_SelectedIndex Changed">
<asp:ListItem Value="1">Enero</asp:ListItem>
<asp:ListItem Value="2">Febrero</asp:ListItem>
<asp:ListItem Value="3">Marzo</asp:ListItem>
<asp:ListItem Value="4">Abril</asp:ListItem>
<asp:ListItem Value="5">Mayo</asp:ListItem>
<asp:ListItem Value="6">Junio</asp:ListItem>
<asp:ListItem Value="7">Julio</asp:ListItem>
<asp:ListItem Value="8">Agosto</asp:ListItem>
<asp:ListItem Value="9">Septiembre</asp:ListItem>
<asp:ListItem Value="10">Octubre</asp:ListItem>
<asp:ListItem Value="11">Noviembre</asp:ListItem>
<asp:ListItem Value="12">Diciembre</asp:ListItem>
</asp:DropDownList>
<asp:DropDownList ID="ddlainicio" runat="server" AutoPostBack="True" OnSelectedIndexChanged="ddlainicio_SelectedIndexCh anged">
</asp:DropDownList>
</div>
<label for="inicio">Fecha Fin:</label>
<asp:DropDownList ID="ddlmesfin" runat="server" AutoPostBack="True">
<asp:ListItem Value="1">Enero</asp:ListItem>
<asp:ListItem Value="2">Febrero</asp:ListItem>
<asp:ListItem Value="3">Marzo</asp:ListItem>
<asp:ListItem Value="4">Abril</asp:ListItem>
<asp:ListItem Value="5">Mayo</asp:ListItem>
<asp:ListItem Value="6">Junio</asp:ListItem>
<asp:ListItem Value="7">Julio</asp:ListItem>
<asp:ListItem Value="8">Agosto</asp:ListItem>
<asp:ListItem Value="9">Septiembre</asp:ListItem>
<asp:ListItem Value="10">Octubre</asp:ListItem>
<asp:ListItem Value="11">Noviembre</asp:ListItem>
<asp:ListItem Value="12">Diciembre</asp:ListItem>
</asp:DropDownList>
<asp:DropDownList ID="ddlafin" runat="server" AutoPostBack="True">
</asp:DropDownList><br />
<asp:CompareValidator ID="CompareValidator1" runat="server" Display="Dynamic" ErrorMessage="Fecha inicio debe ser menor a fecha fin" ControlToCompare="ddlainicio"
ControlToValidate="ddlafin" Operator="GreaterThanEqual"></asp:CompareValidator>
</div>
Con esa validación controlo que el añio fin inicio sea menor o igual en tal caso al anio fin, pero que pasa con el combo de los meses como controlo por ejemplo que no escoja Fecha inicio: Diciembre 2007 y Fecha fin: Enero 2007 de la forma que estoy controlando no me controla los meses.
Gracia por tu ayuda. |