To Check the date format of sql server:
select name ,alias, dateformat from syslanguages where langid =(select value from master..sysconfigures where comment = 'default language')
Execute this query on "master" database
You can set the Culture in your web.config file as below:
<system.web>
<globalization culture="en-US" />
</system.web>