How to minimize viewstate size of a page in asp.net?

前端 未结 6 1672
天命终不由人
天命终不由人 2020-12-25 08:33

How to minimize viewstate size of a page in asp.net? Please help.

6条回答
  •  自闭症患者
    2020-12-25 09:22

    You cannot minimize the size of the ViewState. It's ASP.NET which serializes/deserializes. Though you could selectively disable ViewState for controls that don't need it.

提交回复
热议问题