Change system datetime using ASP
Web Development
2
Posts
2
Posters
0
Views
1
Watching
-
Hi everyone, Could you please show me how to change server system datetime using ASP code? Thanks in advance.
Do you mean change the locale / default date format from, say dd/mm/yyyy to mm/dd/yyyy ? You can't - you cannot change a person's server settings from an asp application, thank god! Imagine if every asp application you ran changed your computer's settings! You wouldn't know where you stood from one minute to the next, let alone the damage that could cause. You can format the datetime values within an application using the VBScript FormatDateTime function (classic ASP) or the ToString function in .NET Fred