asp:listbox如何提供数据?

发布于 2024-11-05 17:54:54 字数 221 浏览 0 评论 0原文

我的 MVC 视图遇到一些问题。列表框的数据由控制器传递并可通过 Model.templateList 访问。所以现在我必须将这些数据传递到 asp:listbox。有什么方法可以做到这一点还是我必须使用某种 DataProvider。就 SoC 而言会有什么坏处。我考虑过使用 Html-Helper Html.ListBox,但我不知道如何获得双击等操作来使用它。希望有很多聪明人对此有所了解。

感谢您的阅读

I'm having some trouble with in my MVC-View. The data for the listbox is passed by the controller and accessible via Model.templateList. So now I have to pass these data to the asp:listbox. Is there any way to do this or do I have to use some sort of DataProvider. What would be bad in terms of SoC. I considered using the Html-Helper Html.ListBox but I have no idea how to get actions like double-click and so on to work with it. Hope there are many smart people with some knowledge about this.

Thank you for reading

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

银河中√捞星星 2024-11-12 17:54:54

要绑定到列表框,您可以使用类似这样的

@Html.ListBox("ListBoxName", new SelectList(Model,"dataValueField", "dataTextField"));

内容来执行需要使用 JavaScript 的操作。像“listbox double click javascript”这样的谷歌查询将帮助您进入下一个级别。

To bind to the list box you would using something like this

@Html.ListBox("ListBoxName", new SelectList(Model,"dataValueField", "dataTextField"));

with regards to the the actions you would need to use JavaScript. A google query like "listbox double click javascript" will help you get to the next level.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文