|
 |
aspx_espanol thread: Checkbox
Message #1 by "Jayson Quintero" <jabord@h...> on Mon, 17 Dec 2001 16:36:46
|
|
Hola a todos
He trabajado desde hace 2 meses con asp.net y ahora me doy cuenta de que
el evento checked del CheckedChanged no se ejecuta. O algunos de ustedes
le funciona bien.
Tengo un código así:
Private Sub CheckTag_CheckedChanged(ByVal sender As Object, ByVal e
As System.EventArgs) Handles CheckTag.CheckedChanged
If CheckTag.Checked = True Then
dropAssign.Enabled = False
Else
dropAssign.Enabled = True
End If
End Sub
Y no habilita y deshabilita el dropDownlist.
Si a ti te funciona, hasmelo saber y si tienes alguna idea dime por que
no funciona.
Message #2 by Luis Ruiz <lruiznkike77@y...> on Tue, 18 Dec 2001 11:21:29 -0800 (PST)
|
|
tienes en el checkbox la propiedad autopostback=true??
Luis Ruiz
--- Jayson Quintero <jabord@h...> wrote:
> Hola a todos
>
> He trabajado desde hace 2 meses con asp.net y ahora
> me doy cuenta de que
> el evento checked del CheckedChanged no se ejecuta.
> O algunos de ustedes
> le funciona bien.
>
> Tengo un código así:
>
> Private Sub CheckTag_CheckedChanged(ByVal sender
> As Object, ByVal e
> As System.EventArgs) Handles
> CheckTag.CheckedChanged
> If CheckTag.Checked = True Then
> dropAssign.Enabled = False
> Else
> dropAssign.Enabled = True
> End If
> End Sub
>
> Y no habilita y deshabilita el dropDownlist.
>
> Si a ti te funciona, hasmelo saber y si tienes
> alguna idea dime por que
> no funciona.
> ---
> Usted está suscrito a aspx_espanol como:
> lruiznkike77@y...
> Para darse de baja, envíe un mensaje en blanco a
> $subst('Email.Unsub')
>
$subst('Email.Unsub').
__________________________________________________
Do You Yahoo!?
Check out Yahoo! Shopping and Yahoo! Auctions for all of
your unique holiday gifts! Buy at http://shopping.yahoo.com
or bid at http://auctions.yahoo.com
|
|
 |