I have tried
{Format("{0:MM.dd.yyyy}", "{Today}")}
but didn't work.
Thanks.
How do i format a date in a textbox?
- Fabio Pagano
- Posts: 355
- Joined: Mon Apr 16, 2007 12:38 pm
- Location: Bari (Italy)
How do i format a date in a textbox?
Please use the following expression instead:
Thank you.
Code: Select all
{System.String.Format("{0:MM.dd.yyyy}", Today)}
How do i format a date in a textbox?
I often use this:
{Today.ToShortDateString()}
Marco
{Today.ToShortDateString()}
Marco