如何获取下拉列表的设定值?在下面的方法中,我设置文本框和下拉列表的值

时间:2016-04-29 13:20:12

标签: vb.net

如何获取下拉列表的设定值?在下面的方法中,我设置了textboxdropdownlist的值。文本框值正确设置但下拉列表不正确。 我不确定我是否会遗忘。

aspx.vb

    Protected Sub mybotton(ByVal sender As Object, ByVal e As ImageClickEventArgs)
        Dim btndetails As ImageButton = TryCast(sender, ImageButton)
        Dim gvrow As GridViewRow = DirectCast(btndetails.NamingContainer, GridViewRow)

        textbox.Text = gvrow.Cells(4).Text.Replace(" ", "")
        dropdownlist.Text = gvrow.Cells(7).Text.Replace(" ", "")
    End Sub

1 个答案:

答案 0 :(得分:0)

假设下拉列表中已存在该值,您可以使用: dropdownlist.SelectedText = gvrow.Cells(7).Text.Replace(“”,“”)