如何获取下拉列表的设定值?在下面的方法中,我设置了textbox
和dropdownlist
的值。文本框值正确设置但下拉列表不正确。
我不确定我是否会遗忘。
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
答案 0 :(得分:0)
假设下拉列表中已存在该值,您可以使用: dropdownlist.SelectedText = gvrow.Cells(7).Text.Replace(“”,“”)