Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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!

View of Listbox selections 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
share|improve this question

1 Answer

You need to ensure the name field of your listbox matches the parameter in your Edit method. Then, change the Type of the parameter vbpositionnumberDDL to be a string array.

You will then get passed in an array with each selected iten in the list box. It's then easy to convert that to your comma string.

My VB.NET isn't great, but I think this will work

Function Edit(wsmonitor As WSMonitor, ByVal vbpositionnumberDDL As **String()**, ByVal PassedCounty As Integer, ByVal
> MonitorTypeDDL As String) As ActionResult

You can join you string using

Dim foo = [String].Join(",", vbpositionnumberDDL )
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.