Exemplo n.º 1
0
    public static bool KiemTraShortlink(string Title)
    {
        Groups    group = new Groups();
        bool      check = false;
        DataTable dtb   = group.CheckShortlinkUrl(Title);

        if (dtb == null)
        {
            check = true;
        }
        else
        {
            check = false;
        }
        return(check);
    }