TIMEZONE PROBLEM with server

Posted by Nadh123 under Others on 11/10/2012 | Points: 10 | Views : 1924 | Status : [Member] | Replies : 1
iam hosting webapplication us Server application accessing the indain client but time displaying us time .

how to avoid this problem....urgent.....

Mahendra
91-9908699686



Responses

Posted by: Funda on: 11/14/2012 [Member] Starter | Points: 25

Up
0
Down
Set the Culture at the Web Application Level

To set the culture at the Web application level, modify or add the <globalization> tag in the <system.web> section of the Web.config file. By default, Visual Studio .NET creates a Web.config file, and it contains the following <globalization> section.
<globalization
requestEncoding="utf-8"
responseEncoding="utf-8"
/>

To change the culture, add the culture attribute, and then specify the culture name. For example, to change the culture to Arabic - Yemen, change the <globalization> tag to read:
<globalization
requestEncoding="utf-8"
responseEncoding="utf-8"
culture="ar-YE"
/>



Nadh123, if this helps please login to Mark As Answer. | Alert Moderator

Login to post response