Sometimes date format is a little challenge in a Web2 interface
if the Web.config file is not correct formatted, dates are shown like 29-40-2020, when showing or searching files in a Web2 interface.
This is easy to correct,
First have a look at the Web server's date format
Then be sure to set the exactly same format in Web.config file
find the section
<add key="DateFormat" value="dd-mm-yyyy"></add>
and change it
<add key="DateFormat" value="dd-MM-yyyy"></add>
And Finally restart the IIS service.
Then the dates are shown in the correct format
Have fun with Web2 Clients
Jens-Ole Jensen
Comments
Please sign in to leave a comment.