Tagged Questions

8
votes
2answers
373 views

In .net, knowing the week number how can I get the weekdays date?

I want to create a function in C# which for a week number will return me the days, in that week. For instance for week number 40, how can I get the days: 4/10, 5/10, 6/10, 7/10, 8/10, 9/10, 10/10. ...
7
votes
6answers
614 views

How to test if a DateTime is between 2 days of week (DayOfWeek)

In C#, given an arbitrary set of DayOfWeek end points (like, DayOfWeek.Friday and DayOfWeek.Sunday) how would one test if an arbitrary date falls between those two days, inclusive? Example: // ...
6
votes
3answers
2k views

Looping through the days of the week inside of C# TimeSpan Class

I'm trying to loop through EACH DAYof the WEEK between 2 time periods DateTime start = new DateTime(2010, 1, 1); DateTime end = new DateTime(2011, 12, 12); I have managed to get the number of ...
3
votes
3answers
523 views

Javascript: How to get the day of week and the month of the year?

I don't know much about Javascript, and the other questions I found are related to operations on dates, not only getting the information as I need it. Objective I wish to get the date as ...
3
votes
4answers
822 views

C#: Finding Out Which Monday Is The 3rd Monday Of The Month?

If I'm writing some C# code that runs through a year of dates (iterating by day) and want something special to happen every 3rd Monday of the month, how can I accomplish this? In other words, what is ...
2
votes
1answer
80 views

Querying a List of objects to find the the day of the week with the most items

There's got to be a better way! I have a bunch of log records stored in a List. Each log record has a CreateDate field and what I'm trying to do is find an efficient way to query the List object to ...
2
votes
4answers
3k views

Equivalent of WeekDay Function of VB6 in C#

I have to convert some of my VB6 Code to C# , In my VB6 I am having code like dim I as Long I = Weekday(Now, vbFriday) I want equivalent of the same in C# Can any one Help ?
1
vote
4answers
1k views

Get string representation of a sql DateTime day

Let's say i have a sql datetime of '1 May 2009' or '12 May 2009'. Is there any built in sql function / operation i can perform on the dates above to return the string representation of the DAY of the ...
0
votes
2answers
100 views

Getting DayOfWeek from ComboBox

I'm trying to find a way of using DayOfWeek.Monday but by selecting it on a form. So if the user selects Tuesday from a drop down combo box, then programmatically it will be DayOfWeek.Tuesday. This ...
0
votes
3answers
216 views

Get the days in a Week in Javascript, Week starts on Sunday

Here's the given input from the user: Year = 2011, Month = 3 (March), Week = 2 I want to get the days in week 2 of March 2011 in JavaScript. e.g. Sunday 6th, Monday 7th, Tuesday 8th, Wednesday 9th, ...
0
votes
0answers
73 views

DayOfWeek comparison problem

I've got a service which takes in a config setting that describes a weekly time window when it should not run eg dontProcessStart "Monday 17:00" dontProcessStop "Monday 19:00" From these strings I ...
0
votes
6answers
750 views

Get day from DateTime using C#

Silly question. Given a date in a datetime and I know it's tuesday for instance how do i know its tue=2 and mon=1 etc... Thanks
0
votes
2answers
422 views

Grouping Months of a particular Time span together using DateTime

public static string TimeLine2(this HtmlHelper helper, string myString2) { StringBuilder myString3 = new StringBuilder(); DateTime start = new DateTime(2010, 1, 1); DateTime end = new ...
0
votes
5answers
2k views

DateTime Object Representing Day of Week

How can I convert a number between 1 and 7 into a DateTime object in C# which represents the day of the week? The numbers are coming from a XML file which I am parsing. I am retrieving each instance ...