I have a schema that I use for a dataset. After getting the data into
the dataset, I send it to an AST.Net Session.
I need to read the data from the session, and want to do so like a
Typed dataset (i.e. use the schema to increase readability). Does
anyone know how I can do this?
Peter Bromberg [C# MVP] - 17 Mar 2008 16:38 GMT
MyTypedDataSetClass class = (MyTypedDataSetClass)Session["keyName"];
-- Peter
Site: http://www.eggheadcafe.com
UnBlog: http://petesbloggerama.blogspot.com
Short Urls & more: http://ittyurl.net
> I have a schema that I use for a dataset. After getting the data into
> the dataset, I send it to an AST.Net Session.
>
> I need to read the data from the session, and want to do so like a
> Typed dataset (i.e. use the schema to increase readability). Does
> anyone know how I can do this?