asp DropDownListChosen未在下拉列表中显示任何项目

我目前通过nuget将选择的jquery插件添加到我的asp项目中。

Install-Package DropDownListChosen 

然后在aspx页面之一中我使用了下拉列表

 // asp conent page   // code behind public void GetAddress() { try { DataTable dt = new DataTable(); listBoxAddress.ClearSelection(); listBoxAddress.Items.Clear(); DAL_Customer_Registration objDAL = new DAL_Customer_Registration(); dt = objDAL.Get_Address(); foreach (DataRow row in dt.Rows) { listBoxAddress.Items.Add(new ListItem(row["ADDRESS"].ToString(), row["ID"].ToString())); } } catch (Exception) { } } 

在我的母版页面中,我添加了所选插件的.css

  

但仍然没有显示下拉列表中的项目。 为什么会这样? 我的流程出了什么问题? 我还需要在母版页或asp内容页面中添加哪些其他参考资料? 正如所建议的那样,我已经安装了依赖项jquery文件,但仍然会在selected.jquery.js文件中出现“ Uncaught TypeError: this.container.find(...).first is not a function ”。

我的代码有什么问题吗? 请建议可能的解决方案。 谢谢!!!