creating a XML island

  • Thread starter Thread starter MK
  • Start date Start date
M

MK

Hi,

I have a requirement of creating an xml island from SQL
server using ADO.NET, and this island has to be sent back
to server on the basis of some action.

I will be greateful if anybody could help me out

Thanks

MK
 
I believe...
"xml data island" refers to xml that is stored but not displayed in a
browser page. The XML is then available for manipulation in client-side
script. This manipulation can then update the HTML page (via DHTML)
without round-tripping to the server.

can you give some additional information as to what you want to do?
where does the ADO.NET fit in? which server are you talking about when you
say "back to the server"? back to SQL? to an ASP.NET app?
 
I will explain my requirement here.

I want to use a tab control in a web application. Whenever
the user clicks on a tab, it has to fetch some data from
databse display on the form controls. Simultaneously, the
application should form an XML island and should be kept
at client for furthur use.

If the user clicks the same tab after navigating to other
tabs, the data should be displayed from XML island to
avoid a round trip to the server.

And, when the user clicks on the second tab, the first tab
data should be sent to the server, i mean the data should
be stored in memory at server, if the user does any
modification of data. And when the user does some master
save,all data which is residing at memory should be saved
into the database.

I hope you understand my requirement now. I want use
ADO.NET to populate the XML island from the Database and
also want to use custom handler to implement this.
 
Back
Top