最近一直在学习动态控件的问题,这个又不得不涉及到viewstate和页面life cycle,查阅了一些资料。先将ViewState的一些资料整理如下:
其实我觉得有一句话就很好的说明了ViewState的作用:it's there to persist state across postbacks.(for an asp.net web page,its state is the property values of the controls that make up its control hierarchy.)那么问题就来了,什么样的东西需要viewstate来保存呢? what needs to be stored in the view state is any programmatic changes to the page's state,也就是说任何在code behind 或者别的地方修改了的页面属性都是通过viewstate来保存的(不止包括我们平时常用到的在本页面生存的一些数据)。