I have a weird problem with the CalandarExtender on my web project. When someone click on the little calandar icon IE6 crash! I think i properly implemented it
<%@ Register Assembly='AjaxControlToolkit' Namespace='AjaxControlToolkit' TagPrefix='cc1' %> <asp:TextBox ID='txtDateDebut' runat='server' CssClass='TextBox'></asp:TextBox> <asp:ImageButton ID='txtDateDebutButton' runat='server' ImageUrl='~/images/16X16_2/cal.gif' /> <cc1:CalendarExtender ID='txtDateDebutCalendarExtender' runat='server' Animated='false' CssClass='Calendar' FirstDayOfWeek='Monday' Format='dd/MM/yyyy' PopupButtonID='txtDateDebutButton' TargetControlID='txtDateDebut'> </cc1:CalendarExtender>
On have IE7 it works but it stretch up, on IE6 it freeze the app until its stop without any error message.
Two things to try:
1) If you’re running this inside of an
UpdatePanel, make sure your UpdatePanel has an ID set on it.2) If you have set
EnableEventValidation='false', try turning it backon.I know those sound weird, but #2 fixed a crash in IE6 in a very complicated web application that I work on…