M
Morten Snedker
Dynamicweb.eCommerce.Orders.OrderLineCollection olc = new
Dynamicweb.eCommerce.Orders.OrderLineCollection();
...some code that puts data to the olc variable..
HttpContext.Current.Session["OrderLineCollectionOfPresaleProducts"] = olc;
This last line produces:
Conversion from type 'OrderLineCollection' to type 'String' is not valid.
But isn't Session supposed to take any object?
Where am I going wrong?
Regards
Morten Snedker
Dynamicweb.eCommerce.Orders.OrderLineCollection();
...some code that puts data to the olc variable..
HttpContext.Current.Session["OrderLineCollectionOfPresaleProducts"] = olc;
This last line produces:
Conversion from type 'OrderLineCollection' to type 'String' is not valid.
But isn't Session supposed to take any object?
Where am I going wrong?
Regards
Morten Snedker