Problem databinding an ASP.Net AJAX toolkit MaskedEditExtender - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T08:12:22Z http://stackoverflow.com/feeds/question/12225 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/12225/problem-databinding-an-asp-net-ajax-toolkit-maskededitextender 2 Problem databinding an ASP.Net AJAX toolkit MaskedEditExtender Keng 2008-08-15T13:16:25Z 2009-11-03T08:44:12Z <p>I have a database that contains a date and we are using the MaskedEditExtender (MEE) and MaskedEditValidator to make sure the dates are appropriate. However, we want the Admins to be able to go in and change the data (specifically the date) if necessary. </p> <p>How can I have the MEE field pre-populate with the database value when the data is shown on the page? I've tried to use 'bind' in the 'InitialValue' property but it doesn't populate the textbox.</p> <p>Thanks.</p> http://stackoverflow.com/questions/12225/problem-databinding-an-asp-net-ajax-toolkit-maskededitextender/12245#12245 0 Answer by Keng for Problem databinding an ASP.Net AJAX toolkit MaskedEditExtender Keng 2008-08-15T13:36:22Z 2008-08-15T13:36:22Z <p>I believe that is what is happening here but it won't populate.</p> <p><code>"&lt;asp:TextBox ID="comEvnt _DateTextBox" runat="server" Text='&lt;%# Bind("comEvnt _Date") %&gt;' /&gt;");</code></p> http://stackoverflow.com/questions/12225/problem-databinding-an-asp-net-ajax-toolkit-maskededitextender/12257#12257 0 Answer by Keith for Problem databinding an ASP.Net AJAX toolkit MaskedEditExtender Keith 2008-08-15T13:45:53Z 2008-08-15T13:45:53Z <p>Are you referring to the asp.Net Ajax toolkit extensions at:</p> <p><a href="http://www.asp.net/AJAX/AjaxControlToolkit/Samples/MaskedEdit/MaskedEdit.aspx" rel="nofollow">http://www.asp.net/AJAX/AjaxControlToolkit/Samples/MaskedEdit/MaskedEdit.aspx</a></p> <p>If so have you checked that your data is coming back in the correct format? It will have to match your date format in order to be displayed.</p> http://stackoverflow.com/questions/12225/problem-databinding-an-asp-net-ajax-toolkit-maskededitextender/12343#12343 0 Answer by Keng for Problem databinding an ASP.Net AJAX toolkit MaskedEditExtender Keng 2008-08-15T15:13:09Z 2008-08-15T15:29:51Z <blockquote> <p><em>Are you referring to the asp.Net Ajax toolkit extensions at:</em></p> <p><em><a href="http://www.asp.net/AJAX/AjaxControlToolkit/Samples/MaskedEdit/MaskedEdit.aspx" rel="nofollow">http://www.asp.net/AJAX/AjaxControlToolkit/Samples/MaskedEdit/MaskedEdit.aspx</a></em></p> <p><em>If so have you checked that your data is coming back in the correct format? It will have</em> ><em>to match your date format in order to be displayed.</em></p> </blockquote> <p>Yes, I'm using those. The db field it's pulling is a date/time field that is validated using the same code that is used to enter data into the field (copy/paste).</p> http://stackoverflow.com/questions/12225/problem-databinding-an-asp-net-ajax-toolkit-maskededitextender/16718#16718 1 Answer by Keng for Problem databinding an ASP.Net AJAX toolkit MaskedEditExtender Keng 2008-08-19T18:44:53Z 2008-08-19T18:44:53Z <p>We found out this morning why our code was mishandling the extender. Since the db was handling the date as a date/time it was returning the date in this format 99/99/9999 99:99:99 but we had the extender mask looking for this format 99/99/9999 99:99 </p> <pre><code>Mask="99/99/9999 99:99:99"</code></pre> <p>the above code fixed the problem. thanks to everyone for their help.</p> http://stackoverflow.com/questions/12225/problem-databinding-an-asp-net-ajax-toolkit-maskededitextender/1666021#1666021 0 Answer by raj for Problem databinding an ASP.Net AJAX toolkit MaskedEditExtender raj 2009-11-03T08:44:12Z 2009-11-03T08:44:12Z <p><a href="http://www.newcarsawari.blogspot.com" rel="nofollow">link text</a></p> <p>If so have you checked that your data is coming back in the correct format? It will have >to match your date format in order to be displayed.</p>