vote up 2 vote down star

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.

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.

Thanks.

flag

5 Answers

vote up 0 vote down

I believe that is what is happening here but it won't populate.

"<asp:TextBox ID="comEvnt _DateTextBox" runat="server" Text='<%# Bind("comEvnt _Date") %>' />");

link|flag
vote up 0 vote down

Are you referring to the asp.Net Ajax toolkit extensions at:

http://www.asp.net/AJAX/AjaxControlToolkit/Samples/MaskedEdit/MaskedEdit.aspx

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.

link|flag
vote up 0 vote down

Are you referring to the asp.Net Ajax toolkit extensions at:

http://www.asp.net/AJAX/AjaxControlToolkit/Samples/MaskedEdit/MaskedEdit.aspx

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.

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).

link|flag
vote up 1 vote down check

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

Mask="99/99/9999 99:99:99"

the above code fixed the problem. thanks to everyone for their help.

link|flag
vote up 0 vote down

link text

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.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.