I implemented the sqlserver mode of the session state, and when I run my application, I encountered an XML hash table serialization error. and my class is as follows:
[Serializable] public class ProjectSetup{ private System.Collections.Hashtable _ConfigTable;
Now I want to know how to serialize a hastable or if there is another alternative, please let me know.
and exactly the error: "It is not possible to serialize a ProjectSetup.ConfigTable element of type System.Collections.Hashtable because it implements IDictionary"
source share