I would like to format a date in radtextbox to exclude the time.. I have the following code
<
telerik:RadTextBox ID="txtEntryDate"
EmptyMessage="" ToolTip="Entry date"
Text='<%#Bind("EntryDate") %>'
DataFormatString="{0:MM/dd/yyyy}"
readonly = "true"
runat="server" Width="100px"/>
This does not work and it is still displayed with the time. I do not want to use a date picker because this date should never be changed.
Thank you.
Judith