Ver Mensaje Individual
  #2 (permalink)  
Antiguo 22/08/2008, 05:22
Baratheon
 
Fecha de Ingreso: julio-2008
Mensajes: 34
Antigüedad: 15 años, 9 meses
Puntos: 2
Respuesta: Habilitar botón cuando se pulsa otro

Haz esto:

protected void Button1_Click1(object sender, EventArgs e)
{
Button1.Enabled = true;
}

//Controles con el boton deshabilitado

protected void Page_Init(object sender, EventArgs e)
{
if (!isnotpostback)
Button1.Enabled = false;
}