Thanks for your response. I need the selected value from listboxes,
dropdownlists to be postback to server.
> Thanks for your response. I need the selected value from listboxes,
> dropdownlists to be postback to server.
Hi Daisy
The property which controls whether or not selected data is retained
is "ViewStateEnabled" This I must emphasise only applies to web server
controls not to their html counterparts.
With regard to the page jumping back to the top there is a web.config
file setting that will prevent this in the <system><web><pages>
section:
maintainScrollPositionOnPostBack="True"
this is false be default
HTH
Phil Hall
Sarah - 14 Aug 2007 21:52 GMT
That works great! It resolved the issue. Thanks a bunch!
> > Thanks for your response. I need the selected value from listboxes,
> > dropdownlists to be postback to server.
[quoted text clipped - 16 lines]
>
> Phil Hall