I am storing an array of a custom serializable class in session on my site. When a page on the site changes, suddenly it renders them invalid, and tells me that it can t cast the type to it s own type. I assume the class version numbers are changing or something?!
I d appreciate avoiding the "don t use session" answers, unless it s a really simple solution. I m not trying to redesign this whole process.
Unable to cast object of type ShipmentPackages[] to type ShipmentPackages[] .
Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.
Exception Details: System.InvalidCastException: Unable to cast object of type ShipmentPackages[] to type ShipmentPackages[] .
Source Error:
Line 21: Else
Line 22: If Not Session("ShipmentList") Is Nothing Then
Line 23: ShipmentList = DirectCast(Session("ShipmentList"), ShipmentPackages()).ToList
Line 24: End If
Line 25: End If