我是MVC的新手,我正在从WebForms学习它是如何工作的。在我当前的项目中,我需要从DropdownList中获取数据,我从数据库填充并通过viewbag传递,当单击“添加”提交时,它会将下拉列表的选定项添加到(或ListBox)中,并且当“删除“提交被推送,它删除(或ListBox)中的选定项目。我的代码是:
@ Html.DropDownList(“systemlist”,“选择一个系统”)
< br />
< input type =“submit”class =“btn btn-xs btn-primary”name =“button_addsystem”value =“Add”/>
< input type =“submit”class =“btn btn-xs btn-primary”name =“button_removesystem”value =“Remove”/>
< br />
< select size =“4”id =“systems_list”class =“list-group”style =“height:100px; width:200px;”>
< /选择>
我习惯于网页表单,它会触发刷新和服务器端事件来做这件事,我很难将教程或其他问题中的任何内容与我想要做的事情联系起来