Tagged Questions

5
votes
7answers
2k views

JQuery Datetime picker - Need to pick month and year only

I went through this post http://stackoverflow.com/questions/2208480/jquery-date-picker-to-show-month-year-only which is very helpful to me in order to hack the datetime picker UI to suit my situation. ...
2
votes
1answer
53 views

show years between begin and end

How can I count and show all years between an given Beginn and a given End? My Example: for item in folderContents: Beginn = item.Beginn.strftime('%Y') Ende = item.Ende.strftime('%Y') ...
2
votes
7answers
149 views

how can i assign only year say 2011 in a datetime variable in c#

I have a asp Text box as where the user will fill only a year value, For this value I have Datetime type Property in c# application and Date type column in DB. So I want to convert that txtYear.Text ...
2
votes
4answers
353 views

How to get the day of year in ruby?

What is the best way to get the day of year of an specific date in Ruby? For example: 31/dec/2009 -> 365, 01/feb/2008 -> 32, etc
0
votes
2answers
114 views

Select years from datetime column returning new list with distinct years Linq To SQL vb.net

I have a column with datetime and want to get the destinct years in a new list. The goal is to populate a DropDownList with the distinct years only (YYYY, not YYYY-MM-DD HH:MM:SS) extracted from the ...
0
votes
3answers
169 views

In SQL how to return records matching date and month only (ignore year)

I want to return records where the date is between 1 march and 31 june (for example) but I want records for all years.
0
votes
1answer
146 views

jQuery: How can I work with dates in this format? mm/yyyy

I'm doing a web application for articles Articles must be shown by month, with its published date stored as mm/yyyy Now: 1- Should I use a DATE type field for storing? 2- Will jQuery UI datePicker ...
0
votes
6answers
1k views

Is this value a valid year C#

What's the best way to check if a string is a valid year using C#? I currently have a dropdown list that contains the values {'All','2009','2008'} etc, and I want to know whether the selection is one ...