Invalid Page State IndexOutOfRangeException

msvidron

Member
Joined
Jul 21, 2005
Messages
14
Programming Experience
5-10
I've just recently started getting the following error and I do not understand how or why! Can anyone please help? thanks!!!

System.IndexOutOfRangeException: Index was outside the bounds of the array. at System.Web.UI.LosFormatter.DeserializeValueInternal() at System.Web.UI.LosFormatter.DeserializeValueInternal() at System.Web.UI.LosFormatter.DeserializeValueInternal() at System.Web.UI.LosFormatter.DeserializeValueInternal() at System.Web.UI.LosFormatter.DeserializeValueInternal() at System.Web.UI.LosFormatter.DeserializeValueInternal() at System.Web.UI.LosFormatter.DeserializeValueInternal() at System.Web.UI.LosFormatter.DeserializeValueInternal() at System.Web.UI.LosFormatter.Deserialize(String input) at System.Web.UI.Page.LoadPageStateFromPersistenceMedium() --- End of inner exception stack trace --- at System.Web.UI.Page.LoadPageStateFromPersistenceMedium() at System.Web.UI.Page.LoadPageViewState() at System.Web.UI.Page.ProcessRequestMain()
 
You get IndexOutOfRangeException which means you try to access some array or collection by index greater than number of elements. What code does this happen?
 
Back
Top