Browse by Tags

All Tags » JavaScript (RSS)

Javascript Date Comparision using CustomValidator And String to Date Conversion using JavaScript

This function calculates the difference between the two Date, and Validate it, I used this function to validate the difference between the From Date and To Date for not more then 366 days(to cover the leap year also) or less then 0, This function is called...
Posted by bmdayal | 1 comment(s)
Filed under: ,

IsNumeric Function in C#

VB.NET has lots of functions that C# developers have to create manually. Out of which I am providing here the different alternatives of IsNumeric function of VB.NET in C# Using Parse static bool IsNumeric(string s) { try { Int32.Parse(s); } catch { return...
Posted by bmdayal | with no comments
Filed under: ,