Hi I have a text box on a page, tied to a CalendarExtender and a MaskEditExtender. When the date of birth is selected from the calendar it goes in the text box and the next second the date disappears. The same thing happens on a FormView in which text boxes that are populated with dates from a database, in this case the dates are wiped out and nothing is there anymore. The funny this is that, it works on my machine ASP.Net Development Server, "we all heard that before".
When I have someone browse to my machine from their machine this behaviour happens. Any Ideas? What am I missing here? It works fine locally where I'm developing, but not when another machine logs into my web app when its running. I'm at a loss here and can't even debug it because no errors are happening.
<
asp:TextBox ID="DOB" runat="server" Width="100px" AutoPostBack="True" OnTextChanged="DOB_TextChanged" ></asp:TextBox></td>
<cc1:MaskedEditValidator ID="MEV_TxtDOB" ControlToValidate="DOB" runat="server" ValidationGroup="NewRecordValGroup" ControlExtender="MXTDOB" ToolTip="Please enter Date of Birth in the format: YYYY.MM.DD" TooltipMessage="Please enter YYYY.MM.DD"Font-Bold="True" Font-Italic="False"Font-Names="Arial" Font-Size="X-Small"Font-Underline="True"Width="233px" BackColor="Transparent"></cc1:MaskedEditValidator>
<cc1:CalendarExtender ID="CalendarExtender1" runat="server" TargetControlID = "DOB" Format="yyyy.MM.dd" > </cc1:CalendarExtender>
<cc1:MaskedEditExtender ID="MXTDOB" TargetControlID = "DOB" Mask ="9999.99.99" MaskType="Date" InputDirection ="lefttoright" MessageValidatorTip="true"runat="server"> </cc1:MaskedEditExtender>