Ah no. YES, you can cache a DataSet in the Session state. It's easy to do
and works fine--as long as the DataSet is not too large.
That's what you need to do in an ASP page. For applications that don't have
to support 10,000 hits/minute this approach works fine. When the client
clicks on the Update button on the browser-based form, you get a postback.
At this point you re-hydrate the DataSet from the Session cache and move the
data values from the bound controls to the DataRow being changed. (There's a
great article on this in CODE magazine (Nov/Dec). Next, you need to
reconstruct or rehydrate the DataAdapter action queries an execute the
Update method.
hth
--
____________________________________
William (Bill) Vaughn
Author, Mentor, Consultant
MVP, hRD
www.betav.com
Please reply only to the newsgroup so that others can benefit.
This posting is provided "AS IS" with no warranties, and confers no rights.
__________________________________