We have two servers, which are in different time zones - the one is in GMT+2 and another is in GMT-6 We have a pretty large ASP.NET project, which has component libraries etc. Those libraries have embedded javascript files and other content/
We've found an odd issue when we're compiling the library binaries on the server, which is in GMT+2 time zone and uploading files to the server in GMT-6 time zone: binary file modification date for the server, which is in GMT-6 is actually in the future and, as result, pages that use those control libraries don't load correctly - JavaScript error occurs. When we're changing the modification time of the control library DLL file, which is located in web application Bin folder, all starts working Ok. Is there any way to resolve this issue without changing the file modification date/time every time?
