Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
2answers
100 views

Safely comparing local and universal DateTimes

I just noticed what seems like a ridiculous flaw with DateTime comparison. DateTime d = DateTime.Now; DateTime dUtc = d.ToUniversalTime(); d == dUtc; // false d.Equals(dUtc); //false ...
2
votes
2answers
251 views

Time validation using CompareValidator

As a (sorta) follow on from the following question - CustomValidator time c#.net - I would like to know if it is possible to use the CompareValidator to validate a time in a ASP.NET textbox? I have ...
0
votes
2answers
42 views

Date part of a DateTime field for comparison

I'm using Superlist with a due date column (SQL DateTime) as a column in dd/mm/yyyy format. I need, in order to the final user be able to sort by this column, to use just the DATE part of the column. ...
0
votes
1answer
16 views

SQL Server 2008 - Compare time column to current DateTime

I have read through related posts but have not yet found an answer so if I may: I have a column created in my table as follows: [Arrival] time NOT NULL, What is the most efficient way to ...
0
votes
2answers
92 views

How to check given time is after 3pm or not in Rails?

I want easiest or simplest method which returns me boolean value (true/false) depending on the given time is after 3 pm or not irrespective of date. for ex:- def after_three_pm(time) //some ...