We can define a hashtable to store a session variable as
Session['sessionVaribale']=new Hashtable();
Then the values can be stored as
((Hashtable)Session['sessionVariable'])['hashKey']='value1';
We can define a hashtable to store a session variable as
Session['sessionVaribale']=new Hashtable();
Then the values can be stored as
((Hashtable)Session['sessionVariable'])['hashKey']='value1';
Share with