Scenario: We have a listbox in our MVC View and the user has the ability to highlight multiple values. I'd like to be able to save those selected values(if possible?) as a comma delimited cell value in our '08 SQL Database.
The image below shows what I am attempting to explain. Note the selection in the LISTBOX Thanks in advance!
This is where we save the passed in values from the Positionnumber DDL (Listbox w/ mulitple highlights).
> <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