weixin_33712881 2014-06-18 17:14 采纳率: 0%
浏览 20

更新每个笔触的过滤器

I'm using C# in MVC 5. Trying to update my search results upon every key stroke. I've wrote what I think would be logical. In my View I wrote some Ajax to communicate with my post controller.

    @using (Html.BeginForm("Index", "Directory", FormMethod.Post))
    {
        <p>
            Search Employee: <input type="text" name="userName" onkeyup="filterTerm(this.value);" />


        </p>

    }

<script>
    function filterTerm(value) {
        $.ajax({
            type: "POST",
            url: '@Url.Action("Index","Directory")',
            data: JSON.stringify({ userName: value }),
            contentType: "application/json; charset=utf-8",
            dataType: "json",
            success: function (msg) {
                $("#senderContent").html(msg.toString);
            },
            error: function () {
                alert("not connected!");
            }
        });
    }
</script>

and this is my controller:

        [HttpPost]
        public ActionResult Index(string userName)
        {
        /**********Establish Connection********/
        DirectoryEntry dir = createDirectoryEntry();
        DirectorySearcher search = new DirectorySearcher(dir);

        /****Refer to class constructor****/


        /********Create the List to store results in***************/
        List<ADUser> Users = new List<ADUser>();
        string DisplayName = "", SAMAccountName = "", Mail = "", Description = "", Department = "", TelephoneNumber = "", Fax = "";

        /*******Filter parameters************/
        search.Filter = "(&((&(objectCategory=Person)(objectClass=User)))(anr=" + userName + "* ))";
        SearchResultCollection searchresult = search.FindAll();
        search.PropertiesToLoad.Add("Displayname");
        search.PropertiesToLoad.Add("SAMAccountName");
        search.PropertiesToLoad.Add("Mail");
        search.PropertiesToLoad.Add("Description");
        search.PropertiesToLoad.Add("TelephoneNumber");
        search.PropertiesToLoad.Add("Fax");
        search.PropertiesToLoad.Add("Department");

         /*****************Filtering and populating the List****************/    

        if (searchresult != null)
        {
            foreach (SearchResult iResult in searchresult)
            {
                ADUser userAttributes = new ADUser("", "", "", "", "", "", "");

                foreach (string PropertyName in iResult.Properties.PropertyNames)
                {
                    foreach (Object key in iResult.GetDirectoryEntry().Properties[PropertyName])
                    {
                        try
                        {
                            switch (PropertyName.ToUpper())
                            {
                                case "DISPLAYNAME":
                                    DisplayName = key.ToString();
                                    userAttributes.Name = DisplayName;
                                    break;

                                case "SAMACCOUNTNAME":
                                    SAMAccountName = key.ToString();
                                    userAttributes.DomainUserName = SAMAccountName;
                                    break;

                                case "MAIL":
                                    Mail = key.ToString();
                                    userAttributes.EmailAddress = Mail;
                                    break;

                                case "DESCRIPTION":
                                    Description = key.ToString();
                                    userAttributes.JobDescription = Description;
                                    break;

                                case "TELEPHONENUMBER":
                                    TelephoneNumber = key.ToString();
                                    userAttributes.TelephoneNumber = TelephoneNumber;
                                    break;

                                case "FAX":
                                    Fax = key.ToString();
                                    userAttributes.FaxNumber = Fax;
                                    break;

                                case "DEPARTMENT":
                                    Department = key.ToString();
                                    userAttributes.Department = Department;
                                    break;
                            }
                        }
                        catch { }
                    }
                }

                Users.Add(userAttributes);
            }

            return View(Users);
        }
      return View();
     }

I've been monitoring what happens in Fiddler and it doesn't flag an issue, however the ajax error message keeps prompting. I've tested the value before being passed into ajax, and it is reading the value correctly. Just wondering why I'm getting prompted this error. Is it something in my Ajax?

  • 写回答

0条回答 默认 最新

    报告相同问题?

    悬赏问题

    • ¥15 metadata提取的PDF元数据,如何转换为一个Excel
    • ¥15 关于arduino编程toCharArray()函数的使用
    • ¥100 vc++混合CEF采用CLR方式编译报错
    • ¥15 coze 的插件输入飞书多维表格 app_token 后一直显示错误,如何解决?
    • ¥15 vite+vue3+plyr播放本地public文件夹下视频无法加载
    • ¥15 c#逐行读取txt文本,但是每一行里面数据之间空格数量不同
    • ¥50 如何openEuler 22.03上安装配置drbd
    • ¥20 ING91680C BLE5.3 芯片怎么实现串口收发数据
    • ¥15 无线连接树莓派,无法执行update,如何解决?(相关搜索:软件下载)
    • ¥15 Windows11, backspace, enter, space键失灵