1

我在动态创建的下拉列表控件中的 selectedvalue 属性不更新时遇到问题:

我有一个 ctlProductosFormatos 类型的自定义控件,其中包含一个组合和其他控件。我在其他地方动态创建这个自定义控件,然后我遍历动态创建的控件中的所有组合,以使用我想要的值从另一个虚拟下拉列表复制更新它们上的项目列表。

这段代码中的控件是正确迭代的,combo也是正确填充的。我的问题是我想将每个组合上的 selectedvalue 保持在与项目更新之前相同的值,但这失败了。

如果我进入代码并只运行第一个组合的迭代,然后跳出循环,则该组合被正确填充并具有正确的选定值,但如果我运行完整循环,则所有组合都设置为相同价值比最后一个组合,所以我想这与我为所有迭代实例化相同的控件有关,但在我的代码中似乎不是这样。

    Dim ControlFormato As ctlProductosFormatos
    ' Iterates through custom controls collection, IEnumerable(Of ctlProductosFormatos)
    For Each ControlFormato In Controles
        ' Get the dropdownlist inside the current custom control
        Dim ControlComboFind As Control = ControlFormato.FindControl("cmbFotoFormato")
        Dim ControlCombo As DropDownList = CType(ControlComboFind, DropDownList)
        ' Get the currently selected value in the dropdownlist
        Dim ValorSeleccionado As String = ControlCombo.SelectedValue

        ' Clear the items in the current combo,and fills with the ones in a dummy combo
        ControlCombo.Items.Clear()
        ControlCombo.Items.AddRange(ComboPatron.Items.OfType(Of ListItem)().ToArray())

        ' Sets the current combo selected item with the previously saved one
        ControlCombo.SelectedValue = ValorSeleccionado
    Next
4

2 回答 2

1

问题是 ViewState。如果您正在动态修改 DropDownList () 中的项目,它的 ViewState 将不会更新,因此当您回发值时,框架将在控件的 ViewState 中查看发送的值,但该值将丢失,因此 SelectedValue 属性不会被设置。如果您想使用发布的值,请从 Request.Form[ddlName.ClientID] 获取它们(我不确定 ClientID 是否是正确的索引,但主要思想是这个)。

于 2013-05-12T05:17:27.880 回答
0

正如我在彼得的评论中所写的那样,问题在于组合项目重复,其行为类似于“共享项目”。我把这段最丑和更长的代码替换掉了重复行,问题就解决了。希望能帮助到你。

    ' Clear the items in the current combo,and fills with the ones in a dummy combo
    ControlCombo.Items.Clear()
    ' THIS LINE HAS BEEN COMMENTED AND REPLACED FOR THE FOLLOWING CODE
    ' ControlCombo.Items.AddRange(ComboPatron.Items.OfType(Of ListItem)().ToArray())

        Dim LSource As ListItem
        Dim LDestination As ListItem
        For i = 0 To ComboPatron.Items.Count - 1
            LSource = ComboPatron.Items(i)
            LDestination = New ListItem(LSource.Text, LSource.Value)
            ControlCombo.Items.Add(LDestination)
        Next
于 2013-05-12T07:45:34.180 回答