Problem databinding an ASP.Net AJAX toolkit MaskedEditExtender - Stack Overflow most recent 30 from stackoverflow.com2009-12-01T08:12:22Zhttp://stackoverflow.com/feeds/question/12225http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/12225/problem-databinding-an-asp-net-ajax-toolkit-maskededitextender2Problem databinding an ASP.Net AJAX toolkit MaskedEditExtenderKeng2008-08-15T13:16:25Z2009-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#122450Answer by Keng for Problem databinding an ASP.Net AJAX toolkit MaskedEditExtenderKeng2008-08-15T13:36:22Z2008-08-15T13:36:22Z<p>I believe that is what is happening here but it won't populate.</p>
<p><code>"<asp:TextBox ID="comEvnt
_DateTextBox" runat="server" Text='<%# Bind("comEvnt
_Date") %>' />");</code></p>
http://stackoverflow.com/questions/12225/problem-databinding-an-asp-net-ajax-toolkit-maskededitextender/12257#122570Answer by Keith for Problem databinding an ASP.Net AJAX toolkit MaskedEditExtenderKeith2008-08-15T13:45:53Z2008-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#123430Answer by Keng for Problem databinding an ASP.Net AJAX toolkit MaskedEditExtenderKeng2008-08-15T15:13:09Z2008-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#167181Answer by Keng for Problem databinding an ASP.Net AJAX toolkit MaskedEditExtenderKeng2008-08-19T18:44:53Z2008-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#16660210Answer by raj for Problem databinding an ASP.Net AJAX toolkit MaskedEditExtenderraj2009-11-03T08:44:12Z2009-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>