Tagged Questions
0
votes
5answers
1k views
Format a date in label regardless of culture
In my ascx page i have :
<tr>
<td class="lbl">Geboortedatum</td>
<td class="lbl">:</td>
<td class="data">
<asp:Label ...
2
votes
1answer
789 views
WPF Custom DateTimeFormat definitions in Culture
I've been having problems with the stringformat of DateTime in my WPF application. I implemented the The Internationalization Fix which I found here: http://www.nbdtech.com/Free/WpfBinding.pdf as well ...
1
vote
1answer
1k views
format currency with currency symbol at the front
hi
how to format the currency with euro symbols at the front. A currency formatted with culture fr-Fr results in currency symbols at the end and commas instead of "."
9
votes
2answers
8k views
Parse DateTime in c# from strange format
if i have a datetime string in a weird format, such as YYYY##MM##DD HH**M**SS, how can i create a new datetime object base on that? i have read something about the datetimeformatinfoclass but not sure ...
2
votes
5answers
887 views
date format in asp.net versus in console application
I'm deploying a .NET applications to another machine.
in console application, the value of
DateTime.Today.ToLongDateString();
is
10 December 2009
while in web application the value is
23 ...
1
vote
8answers
13k views
c# datetime format
I wish to have a specific format for my DateTime depending on the current culture.
So I try this:
dateTime.ToString("dd/MM/yyyy hh:mm");
This is partially OK, the / gets replaced by the ...
1
vote
3answers
4k views
Setting Date format yyyyMMdd through specify Culture Name
I want to set user date format yyyyMMdd using culture name. Which culture name have to specify to accomplish this?