![Antiguo](http://static.forosdelweb.com/fdwtheme/images/statusicon/post_old.gif)
09/07/2007, 15:26
|
![Avatar de Developer9](http://static.forosdelweb.com/customavatars/avatar96744_1.gif) | (Desactivado) | | Fecha de Ingreso: abril-2005 Ubicación: Mi Ecuador del alma
Mensajes: 4.196
Antigüedad: 19 años, 9 meses Puntos: 47 | |
Re: El valor de un atributo privado se pierde en el postback
Está bien así:
Código:
Private Property Modo() As String
Get
Return CType(ViewState("Modo"), String)
End Get
Set(ByVal Value As String)
ViewState("Modo") = Value
End Set
End Property
|