Tuesday, March 5, 2024

How to make a list of Viewstate in ASP.NET

 List<CourtApplicationDTO> FilteredAppealList { set { ViewState["FilteredAppealList"] = value; } get { return (List<CourtApplicationDTO>)(ViewState["FilteredAppealList"]); } }

No comments:

Post a Comment