Primero creas tu función javascript
:
Código Javascript
:
Ver originalfunction Texto()
{
var cbo = document.getElementById('<%=DropDownList1.ClientID %>');
document.getElementById('textbox1').value = cbo.options[cbo.selectedIndex].value;
}
Luego asignas mediante código de servidor al evento
onChange.
Código c#:
Ver originalthis.DropDownList1.Attributes.Add("onChange", "Texto()");
Estoy asumiendo que tu dropdownlist tiene nombre
DropDownList1.
Más info sobre javascript
acá.
Saludos.