允许用户选择多个项目的方法 - ASP.Net MVC
我有一个电子商务系统,允许一个产品有多个类别。在管理用户界面中,我将允许管理员向产品添加任意数量的类别。有哪些好的方法可以实现这一目标?我不想做一个用户必须按住控制键等的选择列表。
谢谢。
I have an e-commerce system that allows a product to have multiple categories. In the admin user interface, I'm going to allow the administrator to be able to add as many categories to the product as he would like. What are some good ways to accomplish this? I don't want to do a select-list where the user has to hold down the control key, etc.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用类别表中的一行复选框来执行选择。
ASP.Net MVC - 处理多个复选框
You can use a row of checkboxes in a table of categories to perform the selection.
ASP.Net MVC - Handle Multiple Checkboxes