EnableViewState

  • Thread starter Thread starter Daniel Groh
  • Start date Start date
D

Daniel Groh

Hi,
My EnableViewState from my RadioButtonList doesn't work. I enabled the
PostBack but anyway it goes to the top of my WebForm when i click in a
radion, the EnabledViewState from my RadioButtonList is true. What should i
do ?
 
Hi,

EnableViewState does not maintain the page position on post back, it
maintains the server side state of the objects at the time of rendering the
page, the page position is a client side attribute. A simple solution would
be to set SmartNavigation property to true. Note that the SmartNavigation
might cause other problems for you in which case you will have to revert to
using client side javascript to solve your problem.

Hope this helps
 
Thank u so muchmi forgot about SmartNavigation, i've done a chaos with some
properties in ASP.Net

Thanks a lot!

--

Atenciosamente,

Daniel Groh
CTF Technologies do Brasil Ltda.
Analista Programador
Fone: 11 3837-4203
E-mail: (e-mail address removed)
 
Back
Top