场景:我们的 MVC 视图中有一个列表框,用户可以突出显示多个值。我希望能够将这些选定的值(如果可能的话?)作为逗号分隔的单元格值保存在我们的 '08 SQL 数据库中。
下图显示了我试图解释的内容。请注意 LISTBOX 中的选择提前致谢!
这是我们保存从 Positionnumber DDL(带有多个突出显示的列表框)传入的值的地方。
> <HttpPost()>
> Function Edit(wsmonitor As WSMonitor, ByVal vbpositionnumberDDL As Integer, ByVal PassedCounty As Integer, ByVal
> MonitorTypeDDL As String) As ActionResult
> wsmonitor.PositionNumber = vbpositionnumberDDL
> wsmonitor.MonitorType = MonitorTypeDDL
> wsmonitor.county = PassedCounty
>
> If ModelState.IsValid Then
> db.Entry(wsmonitor).State = EntityState.Modified
> db.SaveChanges()
> Return RedirectToAction("Index")
> End If
>
> Return View(wsmonitor)
> End Function