G
Guest
Hi
I was using Sessionto persist datatables, but now I don't think it's good idea to do so as Session can cause overhead on the server (as the number of users grow), so I use ViewState to store the datatables instead.
I'm wondering what are the disadvantages of using ViewState against Session, beside the fact that the former slows the rendering of HTML as well as the data is visible to the user
Are there other issues I should be concerned about, such as memory overhead on the server, as the number of users grow? Are ViewState values unique to a session/page, or are they of application level? Is there a need for ViewState clean up (sounds silly because I think the answer is no, but I want to make sure
Thanks in advance for any reply.
I was using Sessionto persist datatables, but now I don't think it's good idea to do so as Session can cause overhead on the server (as the number of users grow), so I use ViewState to store the datatables instead.
I'm wondering what are the disadvantages of using ViewState against Session, beside the fact that the former slows the rendering of HTML as well as the data is visible to the user
Are there other issues I should be concerned about, such as memory overhead on the server, as the number of users grow? Are ViewState values unique to a session/page, or are they of application level? Is there a need for ViewState clean up (sounds silly because I think the answer is no, but I want to make sure
Thanks in advance for any reply.