Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Possible Duplicate:
Compare 2 dates with JavaScript

I would like to have a Javascript function to compare 2 dates, the functionality should be as follows

If i given a date as 1-1-2011 and another as 31-12-2011 or 1-1-2011 it should prompt me a message such that date should be greater than the previous one.

Can any one help me

share|improve this question
3  
You should at least SEARCH for this! stackoverflow.com/questions/492994/… – Randolf R-F Jul 26 '11 at 11:06
1  
What have you tried ? What error do you get ? What is your specific problem ? (many people here are OK to help, but won't just give you the code : you need to show some efforts) – Pascal MARTIN Jul 26 '11 at 11:06

marked as duplicate by lonesomeday, Haim Evgi, Bo Persson, Vivin Paliath, Bill the Lizard Jul 26 '11 at 19:24

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

1 Answer

up vote 0 down vote accepted

I will give you sample try as per your need

<script type="text/javascript">
    function CompareDates() {
        var str1 = document.getElementById('<%= txtDate.ClientID %>').value;
        var str2 = document.getElementById('<%= txtDate1.ClientID %>').value;
        var dt1 = parseInt(str1.substring(0, 2), 10);
        var mon1 = parseInt(str1.substring(3, 5), 10);
        var yr1 = parseInt(str1.substring(6, 10), 10);
        var dt2 = parseInt(str2.substring(0, 2), 10);
        var mon2 = parseInt(str2.substring(3, 5), 10);
        var yr2 = parseInt(str2.substring(6, 10), 10);
        var date1 = new Date(yr1, mon1, dt1);
        var date2 = new Date(yr2, mon2, dt2);
        if (date2 < date1) {
            alert("To date cannot be greater than from date");
            return false;
        }
    }
</script>

<asp:TextBox ID="txtDate" runat="server"></asp:TextBox>
        <asp:TextBox ID="txtDate1" runat="server" onBlur="CompareDates();"></asp:TextBox>
share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.