.net uses bootstrap to verify whether there is an unsuccessful verification of the name.

1. Using the bootstrapValidator check name, you need to return a string such as {"valid": true} to view the data. I would like to ask why this is wrong. No matter what name you enter, the foreground will prompt you that the user name does not exist
this is the background code
[ActionName ("ValidName")]

.
    [AuthorFilter]
    public ActionResult ValidName(string NAME)
    {
        T_Project bll = new T_Project();
        OnlineEntity.Model.T_Project[] projectList = bll.getListByName(NAME);
        bool notExit = false;
        if (projectList != null && projectList.Length > 0)
        {
            notExit = true;
        }
        return Json("{\"valid\":"+notExit+"}", JsonRequestBehavior.AllowGet);
    }
    
    
    name: {
                validators: {
                    notEmpty: { message: "" },
                    stringLength: {
                        min: 4,
                        max: 50,
                        message: "4-50"
                    },
                    regexp: {
                        regexp: /^[\u4e00-\u9fa5A-Za-z]{1,20}$/
                    },
                    remote: {
                        type: "POST",
                        url: "/Project/Project/ValidName",
                        data:function(validator) {
                            var x_={
                                userName: validator.getFieldElements("name").val()
                            };
                            return x_;
                        },
                        message: "",
                        delay: 2000
                    }
                }
            }
MySQL Query : SELECT * FROM `codeshelper`.`v9_news` WHERE status=99 AND catid='6' ORDER BY rand() LIMIT 5
MySQL Error : Disk full (/tmp/#sql-temptable-64f5-1bdd71c-4590b.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
MySQL Errno : 1021
Message : Disk full (/tmp/#sql-temptable-64f5-1bdd71c-4590b.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
Need Help?