I am doing a web portal. In that I want to set the date format as mm/dd/yyyy which is currently dd/mm/yyyy. This is a business portal contains more than 200 forms and 1000 stored procedures. Can anyone suggeste me how I will do it dynamically. I want to set the date as per.
Thanks
Sunny SharmaPosted Oct 9, 2013, 1:17 AM
It completely depends on the mechanism of your portal. Check if there's any single source of date coming from. if yes, then you have the option to change the format at origin but this might break the application. OR, if you only want to change the format at client-side without affecting the back-end operations then use JavaScript/jQuery to change the date display format on load, this would be much easier.
HTH :)