date is coming from code its not hard-coded , its picks system date in asp.net
e.g. txtdate.text=now.date
Main Topics
Browse All TopicsHi All,
i have an server (windows 2000 sp4). i deploy an web application on my server. my website need date format of "MM/DD/YYYY". so, i made the changes in Regional settting and also in registry for modify the date format to "MM/DD/YYYY".
but when I checked on Notepad it picks MM/DD/YYYY format that is right, but when i Open my website on server in IE browser it show me "DD/MM/YYYY" date format that cause issue in my website because my website need "MM/dd/YYYY" Format for Runing.
So please help me why browser picks "DD/MM/YYYY" instead of picking "MM/DD/YYYY" because i changed all setting for this but still its show dd/mm/yyyy format.
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
For an asp.net application, you can add appropriate culture in web.config
<?xml version="1.0" encoding="UTF-8" ?>
<configuration>
<system.web>
<!--
globalization Attributes:
requestEncoding="[Encoding
responseEncoding="[Encodin
fileEncoding="[Encoding value]" - Encoding to use for files
culture="[Culture]" - default Thread.CurrentCulture
uiCulture="[Culture]" - default Thread.CurrentUICulture
-->
<globalization
requestEncoding="utf-8"
responseEncoding="utf-8"
culture="en-GB"
uiCulture="en-GB"
/>
</system.web>
</configuration>
Business Accounts
Answer for Membership
by: amit_gPosted on 2009-09-15 at 12:31:43ID: 25338406
Where is this date? Give us some more information. For example if the date is hard coded in the application or coming as data from the SQL server. How is it being displayed and what kind of application you have (asp/asp.net)?