如何添加空列表框并将项目从一个列表框移动到另一个列表框

时间:2014-04-22 10:55:04

标签: c# asp.net asp.net-mvc listbox

如何添加空列表框并将项目从一个列表框移动到另一个列表框,并首先使用EF代码将移动的数据保存到asp.net MVC中的数据库中,

 In my Project I have create a list box which display the data from database code is like this

在控制器中:

public ActionResult Create()
        {
IEnumerable<SelectListItem> items = db.IIDBS
                .Select(c =>new SelectListItem
                {
                    Value=c.InstituteName,
                    Text=c.InstituteName
                });
ViewBag.IIDBS = items;
return View();
        }

在视图中

<fieldset>
<legend>MEMBER ACCESS RIGHTS</legend>
<divstyle="text-decoration: underline; text-align: center"><strong><spanstyle="background-color: #FFFFFF">MEMBER ACCESS RIGHTS</span></strong></div>
         List of Financial Institute
<%:Html.ListBox("InstituteName",(IEnumerable<SelectListItem>) ViewBag.IIDBS,"Select Financial Institute Name") %>
</fieldset>

这里我想要另一个空的Listbox和四个按钮,它将第一个列表框的InstituteName移动到另一个列表框并将这些数据保存到数据库中

谁能告诉我怎么做......  请帮忙......

1 个答案:

答案 0 :(得分:0)

请阅读Article。它将帮助您实现您想要做的事情。您需要在页面中引用JQuery lib(View)。如果你展示你做了什么会更好。因为你是初学者,所以很明白。