MaskedEdit Extender lost data on postback - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T10:40:55Z http://stackoverflow.com/feeds/question/986567 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/986567/maskededit-extender-lost-data-on-postback 0 MaskedEdit Extender lost data on postback Michaël Larouche 2009-06-12T13:11:52Z 2009-06-12T14:42:56Z <p>I am currently developping an web site that require DateTime entry and I am using MaskEdit extender on the TextBox used to enter the date and time. These DateTime are used as input to compute the total hours and other stuff that need to be displayed back on the same page (for previewing)</p> <p>However, after the postback using MS AJAX, my computed data shows but my DateTime entries clears. Before I updated to latest AjaxControlToolkit available for .NET 2.0, my entries was corrupted after the postback. The postback is triggered by a LinkButton. Before that I tried using AutoPostBack property of TextBox.</p> <p>Any ideas for a fix or should I consider ditching MS AJAX and start using another AJAX library either for ASP.NET or going to JS directly.</p> <p>Note that I can't use .NET 3.5 because the target server is using Windows 2000.....</p> http://stackoverflow.com/questions/986567/maskededit-extender-lost-data-on-postback/986724#986724 0 Answer by Matthew Jones for MaskedEdit Extender lost data on postback Matthew Jones 2009-06-12T13:46:27Z 2009-06-12T14:42:56Z <p>I cannot reproduce this error. Could you post your code?</p> <p>EDIT: Ok, couple of possible solutions.</p> <ol> <li><p>Use the attribute</p> <p>ClearTextOnInvalid="false"</p></li> </ol> <p>on your MaskedEditExtenders. This will prevent the page from erasing the entered date if it is invalid.</p> <ol> <li>Check and double check that you are not assigning a value to those text boxes with the Masked Edit Extenders, since if you accidentally put in an invalid value, it will not accept it and erase it</li> </ol> <p>The only other solution I have found is to not use the MaskedEditExtender at all...</p> http://stackoverflow.com/questions/986567/maskededit-extender-lost-data-on-postback/986858#986858 0 Answer by Michaël Larouche for MaskedEdit Extender lost data on postback Michaël Larouche 2009-06-12T14:15:44Z 2009-06-12T14:15:44Z <p>Sure</p> <p>ASPX part:</p> <pre><code> &lt;td&gt;&lt;asp:TextBox id="textBeginStation" runat="server"&gt;&lt;/asp:TextBox&gt;&lt;/td&gt; &lt;td&gt; &lt;asp:TextBox ID="textBeginServiceDateTime" runat="server"&gt;&lt;/asp:TextBox&gt; &lt;ajaxToolkit:MaskedEditExtender ID="textBeginServiceDateTimeMaskedEditExtender" runat="server" TargetControlID="textBeginServiceDateTime" MaskType="DateTime" Mask="9999/99/99 99:99" UserDateFormat="YearMonthDay" UserTimeFormat="TwentyFourHour"&gt; &lt;/ajaxToolkit:MaskedEditExtender&gt; &lt;/td&gt; &lt;td&gt; &lt;asp:TextBox ID="textBeginStationDateTime" runat="server"&gt;&lt;/asp:TextBox&gt; &lt;ajaxToolkit:MaskedEditExtender ID="textBeginStationDateTimeMaskedEditExtender" runat="server" TargetControlID="textBeginStationDateTime" MaskType="DateTime" AutoComplete="False" Mask="9999/99/99 99:99" UserDateFormat="YearMonthDay" UserTimeFormat="TwentyFourHour" EnableViewState="False"&gt; &lt;/ajaxToolkit:MaskedEditExtender&gt; &lt;/td&gt; &lt;td&gt;&lt;asp:TextBox ID="textBeginRemarque" runat="server"&gt;&lt;/asp:TextBox&gt;&lt;/td&gt; </code></pre> <p>This is just a sample, the rest is pretty similar. This is part of a UserControl that gets included inside a UpdatePanel from MS AJAX</p> <p>The LinkButton Code:</p> <pre><code>ProductionDependencyFactory depFactory = new ProductionDependencyFactory(); try { DateTime beginServiceDateTime = DateTime.Parse(textBeginServiceDateTime.Text); DateTime beginStationDateTime = DateTime.Parse(textBeginStationDateTime.Text); DateTime endServiceDateTime = DateTime.Parse(textEndServiceDateTime.Text); DateTime endStationDateTime = DateTime.Parse(textEndStationDateTime.Text); NormalTrainTimeMilageCalculator calculator = depFactory.Create&lt;NormalTrainTimeMilageCalculator&gt;(); calculator.BeginStation = textBeginStation.Text; calculator.BeginServiceDateTime = beginServiceDateTime; calculator.BeginStationDateTime = beginStationDateTime; calculator.EndStationDateTime = endStationDateTime; calculator.EndServiceDateTime = endServiceDateTime; calculator.EndStation = textEndStation.Text; labelTotalHour.Text = calculator.TotalTime().Hours.ToString(); labelTotalMinute.Text = calculator.TotalTime().Minutes.ToString(); labelTotalMilage.Text = calculator.TotalMilage().ToString(); } catch (Exception) { // Do nothing } </code></pre>