Iis – Multiple websites within IIS running with different time zone settings

iislocalizationtimezone

Is there a way to have multiple websites running within IIS that have different time zone information?

For example: The local Windows Server is running in CST. I would like one website (application) that runs in CST and a second website (application) that runs in EST.

Is this possible?

Best Answer

The timezone is set at the server level, so there isn't a way to override that per site. The way to handle that would be from your code. Set a timezone in your web.config and calculate the timezone on the fly based on that.

Related Topic