ADO disconnect to XML back to update?

From: K.M.L. (nospam_caloebs_at_surewest.net)
Date: 04/29/04


Date: Wed, 28 Apr 2004 21:18:17 -0700

ADO disconnected recordset, passed to client web as Stream.
Client places into <xml id=xmlData></xml> data island.

I bind to that data island.

Update. It updates the data in XML island

Turn back to DOM. Pass via Request Object to Server

'***Server

DOM.load(request)
rs.Open DOM

rs.activeconnection=cn
rs.UpdateBatch

Response.Expires = 0
 Response.Buffer = False

 If objConn.Errors.Count<>0 Then
  Response.Write Err.Description
 Else
  Response.Write "Successfull Update"
 End If

'*****

I always get 'Successful Update' but the updates don't take.

Does a disconnected recordset manage which records got changed? So if I
turn into XML data island, that management doesn't occur?

Thanks,
Kevin