Código HTML:
Ver original<asp:DropDownList runat="server" ID="drpCambio" AutoPostBack="true" OnSelectedIndexChanged="Cambio">
<asp:ListItem Text="Valor1" Value="Valor1"></asp:ListItem>
<asp:ListItem Text="Valor2" Value="Valor2"></asp:ListItem>
</asp:DropDownList>
Código vb:
Ver originalSub Cambio(ByVal s As Object, ByVal e As EventArgs)
If drpCambio.SelectedValue = "Valor1" Then
txtCaja1.text = "primer texto"
Else
txtCaja2.text = "SegundoTexto texto"
End If
End Sub
si te fijas, el dropdownlist tiene autpostback = true y si cambian el valor, se autoenvia a la funcion Cambio, la funcion cambio determina que valor esta seleccionado, si esta seleccionado el valor1, la textbox 'Caja1' cambia el valor.