设想: 我们的多指标类集调查中有一个清单箱,用户能够强调多种价值观。 因此,我能够把这些选定的价值(如果可能的话)作为我们08国库数据库的 com化电池价值。
以下形象显示了我试图解释的内容。 Note the selected in the LISTBOX 提前感谢!
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