1. public bool IsNumeric(string value)
    {
    bool result = false;

    try
    {
    Convert.ToInt64(value);
    result = true;
    }
    catch (Exception ex)
    {
    result = false;
    }
    return result;
    }
    0

    Add a comment

Blog Archive
Topics
Topics
Loading
Dynamic Views theme. Powered by Blogger. Report Abuse.