I have a question if this is possible. I have two drop-down lists, but they are divided into 2 different methods since each one has different functions.
He asks me is I do not know if it is possible to declare the call of it. As for example;
private void Dropdownlist()
{
//Lista desplegable
//Cuando se eliga Item #1 ejecutar el solo el Método Habilitar_uno
//Cuando se eliga item #2 Ejecutar el solo el Método Habilitar_dos
}
public void Habilitar_uno(object sender, EventArgs e)
{
//funciones
}
public void Habilitar_uno(object sender, EventArgs e)
{
//Funciones
}