days of week
-
hi wot is the best way to get the days of current week or any week in year when developing C# and asp.net application. i m using the calendar control. thank you for your help. do it man
-
how can we get the seven days a whole week of particular date.not a particular day of week. thank you do it man
-
how can we get the seven days a whole week of particular date.not a particular day of week. thank you do it man
Get the
CultureInfo
for the language/culture for which you want the names and use theDateTimeFormat
property:CultureInfo culture = Thread.CurrentCulture;
string[] days = culture.DateTimeFormat.DayNames;-----BEGIN GEEK CODE BLOCK----- Version: 3.21 GCS/G/MU d- s: a- C++++ UL@ P++(+++) L+(--) E--- W+++ N++ o+ K? w++++ O- M(+) V? PS-- PE Y++ PGP++ t++@ 5 X+++ R+@ tv+ b(-)>b++ DI++++ D+ G e++>+++ h---* r+++ y+++ -----END GEEK CODE BLOCK-----
-
Get the
CultureInfo
for the language/culture for which you want the names and use theDateTimeFormat
property:CultureInfo culture = Thread.CurrentCulture;
string[] days = culture.DateTimeFormat.DayNames;-----BEGIN GEEK CODE BLOCK----- Version: 3.21 GCS/G/MU d- s: a- C++++ UL@ P++(+++) L+(--) E--- W+++ N++ o+ K? w++++ O- M(+) V? PS-- PE Y++ PGP++ t++@ 5 X+++ R+@ tv+ b(-)>b++ DI++++ D+ G e++>+++ h---* r+++ y+++ -----END GEEK CODE BLOCK-----
i want to get the 7 dates of week. like if today is the 6 jan in calendar control 2nd day of current week. i want to get all the 7 dates from monday to sunday from(5-01-04 to 11-01-04)how can i get thoes dates from calender control.did u get my point or not. thank you. do it man
-
i want to get the 7 dates of week. like if today is the 6 jan in calendar control 2nd day of current week. i want to get all the 7 dates from monday to sunday from(5-01-04 to 11-01-04)how can i get thoes dates from calender control.did u get my point or not. thank you. do it man
First of all, Tuesday, January 6th, 2004 is not the 2nd day of the week in the en-US culture - nor in many other cultures - it is the 3rd. This all comes down to culture-specific information. Use the following to get what the day of week is for the specific culture:
CultureInfo culture = Thread.CurrentCulture;
int dayOfWeek = (int)culture.Calendar.GetDayOfWeek(DateTime.Now);An enum like
DayOfWeek
can be cast to anint
. In this case, theDayOfWeek
members correspond to the number for the week, i.e. Sunday = 0, Monday = 1, Tuesday = 2, etc. You should add 1 to this value since most people think in base 1, not base 0.-----BEGIN GEEK CODE BLOCK----- Version: 3.21 GCS/G/MU d- s: a- C++++ UL@ P++(+++) L+(--) E--- W+++ N++ o+ K? w++++ O- M(+) V? PS-- PE Y++ PGP++ t++@ 5 X+++ R+@ tv+ b(-)>b++ DI++++ D+ G e++>+++ h---* r+++ y+++ -----END GEEK CODE BLOCK-----
-
First of all, Tuesday, January 6th, 2004 is not the 2nd day of the week in the en-US culture - nor in many other cultures - it is the 3rd. This all comes down to culture-specific information. Use the following to get what the day of week is for the specific culture:
CultureInfo culture = Thread.CurrentCulture;
int dayOfWeek = (int)culture.Calendar.GetDayOfWeek(DateTime.Now);An enum like
DayOfWeek
can be cast to anint
. In this case, theDayOfWeek
members correspond to the number for the week, i.e. Sunday = 0, Monday = 1, Tuesday = 2, etc. You should add 1 to this value since most people think in base 1, not base 0.-----BEGIN GEEK CODE BLOCK----- Version: 3.21 GCS/G/MU d- s: a- C++++ UL@ P++(+++) L+(--) E--- W+++ N++ o+ K? w++++ O- M(+) V? PS-- PE Y++ PGP++ t++@ 5 X+++ R+@ tv+ b(-)>b++ DI++++ D+ G e++>+++ h---* r+++ y+++ -----END GEEK CODE BLOCK-----
Thank you very much for your help:rose: could u give me some help that how can i create a Year View calendar in ASP.net in which i can show the user all the 12 month of a year and can navigate through diff years. Thank you once again for your help. do it man