J
Just D.
Does anybody know any good solution to avoid this setting to be enabled? I
guess Microsoft doesn't care of the Internet connection of the potential
client working with asp.net. This EnableViewState setting is TRUE by default
and it causes the whole page to be serialized and sent to the server side
and then downloaded back to the client machine dramatically increasing the
whole traffic. Example? Ok. A simple page (or frame) with this setting
equals FALSE weights about 200 Kbytes, it has several controls, one
DataGrid, etc. Same page with this EnableViewState=TRUE takes 6 Mbytes. I'm
just wondering if we really need to upload the whole stuff to the server and
then to download it to the client side or it can be decreased using some
tricks?
Although if we disable that then some or all of the controls lose the data
entered by the user, including the selected row on the datagrid, text boxes,
etc. But is it really a very good solution to follow this directions or we
could do anything more efficient?
Just D.
guess Microsoft doesn't care of the Internet connection of the potential
client working with asp.net. This EnableViewState setting is TRUE by default
and it causes the whole page to be serialized and sent to the server side
and then downloaded back to the client machine dramatically increasing the
whole traffic. Example? Ok. A simple page (or frame) with this setting
equals FALSE weights about 200 Kbytes, it has several controls, one
DataGrid, etc. Same page with this EnableViewState=TRUE takes 6 Mbytes. I'm
just wondering if we really need to upload the whole stuff to the server and
then to download it to the client side or it can be decreased using some
tricks?
Although if we disable that then some or all of the controls lose the data
entered by the user, including the selected row on the datagrid, text boxes,
etc. But is it really a very good solution to follow this directions or we
could do anything more efficient?
Just D.