**_
Aquí la respuesta , Espero la puedan entender, si no pueden hacerlo , tratare de explicarlo mejor . Saludos
_**
vista.aspx
<asp:DropDownList EnableViewState="true" ID="COMBO" OnSelectedIndexChanged="DDUbicacion_SelectedIndexChanged"
AutoPostBack="true" runat="server" ></asp:DropDownList>
CODIGO ASPX.VB_
Protected Sub COMBO_SelectedIndexChanged(sender As Object, e As EventArgs)
Dim gvrow As GridViewRow = CType(sender, DropDownList).NamingContainer
Dim id As Integer = CInt(gvrow.Cells(1).Text)--> **id para seleccionar fila**
Dim idCombo As Integer = CType(gvrow.FindControl("COMBO"), DropDownList).SelectedValue
Dim cmd As New SqlCommand **---> conexion**
cmd.Connection = New SqlConnection(ConfigurationManager.ConnectionStrings("Base").ConnectionString) **--> coneccion base **
cmd.CommandType = CommandType.Text
cmd.CommandText = "update TABLA set idcombo=@idcombo where id=@id"
**--> ACCION actualizar donde el seleccion del Dropdownlist , donde id = id**
cmd.Parameters.AddWithValue("@id", id)
cmd.Parameters.AddWithValue("@idCombo", idCombo)
cmd.Connection.Open() **--> abrimos**
cmd.ExecuteNonQuery() **--> ejecutams query**
cmd.Connection.Close() **--> cerramos**
End Sub