MVC C#将项目从DropDownList移动​​到<select>

时间:2017-01-16 23:27:52

标签: c# jquery asp.net asp.net-mvc html5

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

0 个答案:

没有答案