What type of data is suitable for storage in ViewState?

Choose the correct answer

Explanation

ViewState is designed to preserve page and control values between postbacks by storing data in a hidden field. However, it can only store objects that are serializable, ensuring the data can be converted into a format suitable for storage and retrieval. Therefore, only serializable objects can be stored in ViewState.

What type of data is suitable for storage in ViewSta… — ASP.net | PakQuizHub