server control to store XML

  • Thread starter Thread starter Mark Goldin
  • Start date Start date
M

Mark Goldin

Is there any control that will hold an xml data on the server and be able to
deliver
that xml to the client?
 
But is XML control visible on the client?
My understading is that that control sends data back to the client but it's
not
a member of a DOM.
 
Yes, XML control can be used to display the XML data (as you asked) but
it's not a member of a DOM. you should use XML islands to work aginst
them with DOM.

What you really after ? I mean what you are tring to achieve?


Natty Gur[MVP]

blog : http://weblogs.asp.net/ngur
Mobile: +972-(0)58-888377
 
I need same xml data to be avlaiable on the server and on the client.
I am generating it on the server ( where else).
I thought that I can send that data to the client
populating some control's property with that data.
Doing that I will not hit my database twice.
 
That's not what I was asking.
My idea was to pass xml data to the client without having the client pulling
data again.
 
Hello Mark

Yes, otherwise I won't recommend it for you. In the article (Getting the
XML for the XML Island) they use ASP to run through table and use
response.write to populate XML Island on the server. you just need to do
it in the ".net way"
HTH

Natty Gur[MVP]

blog : http://weblogs.asp.net/ngur
Mobile: +972-(0)58-888377
 
Back
Top