server control to store XML

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Mark Goldin

    server control to store XML

    Is there any control that will hold an xml data on the server and be able to
    deliver
    that xml to the client?


  • Natty Gur

    #2
    Re: server control to store XML

    Hi,

    Webcontrols.XML .

    Natty Gur[MVP]

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


    *** Sent via Developersdex http://www.developersdex.com ***
    Don't just participate in USENET...get rewarded for it!

    Comment

    • Mark Goldin

      #3
      Re: server control to store XML

      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.

      "Natty Gur" <natty@dao2com. com> wrote in message
      news:#eYgtjAMEH A.2456@TK2MSFTN GP12.phx.gbl...[color=blue]
      > Hi,
      >
      > Webcontrols.XML .
      >
      > Natty Gur[MVP]
      >
      > blog : http://weblogs.asp.net/ngur
      > Mobile: +972-(0)58-888377
      >
      >
      > *** Sent via Developersdex http://www.developersdex.com ***
      > Don't just participate in USENET...get rewarded for it![/color]


      Comment

      • Natty Gur

        #4
        Re: server control to store XML

        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


        *** Sent via Developersdex http://www.developersdex.com ***
        Don't just participate in USENET...get rewarded for it!

        Comment

        • Mark Goldin

          #5
          Re: server control to store XML

          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.

          "Natty Gur" <natty@dao2com. com> wrote in message
          news:#eAFq9GMEH A.3596@tk2msftn gp13.phx.gbl...[color=blue]
          > 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
          >
          >
          > *** Sent via Developersdex http://www.developersdex.com ***
          > Don't just participate in USENET...get rewarded for it![/color]


          Comment

          • Natty Gur

            #6
            Re: server control to store XML

            Mark Hi,

            in that case, I think XML islands will fit your need. the following link
            deal with ASP but you can get the idea .. :-)

            Binding Client Side Controls Dynamically to an XML Data Source Object
            By Ian Vink - http://www.15seconds.com/issue/010205.htm

            HTH

            Natty Gur[MVP]

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


            *** Sent via Developersdex http://www.developersdex.com ***
            Don't just participate in USENET...get rewarded for it!

            Comment

            • Mark Goldin

              #7
              Re: server control to store XML

              That's not what I was asking.
              My idea was to pass xml data to the client without having the client pulling
              data again.

              "Natty Gur" <natty@dao2com. com> wrote in message
              news:Oie0ALMMEH A.3292@TK2MSFTN GP11.phx.gbl...[color=blue]
              > Mark Hi,
              >
              > in that case, I think XML islands will fit your need. the following link
              > deal with ASP but you can get the idea .. :-)
              >
              > Binding Client Side Controls Dynamically to an XML Data Source Object
              > By Ian Vink - http://www.15seconds.com/issue/010205.htm
              >
              > HTH
              >
              > Natty Gur[MVP]
              >
              > blog : http://weblogs.asp.net/ngur
              > Mobile: +972-(0)58-888377
              >
              >
              > *** Sent via Developersdex http://www.developersdex.com ***
              > Don't just participate in USENET...get rewarded for it![/color]


              Comment

              • Natty Gur

                #8
                Re: server control to store XML

                Hi,

                But the client doesn't need to retrieve the data again. The client works
                against the XML data in the XML Island.

                Natty Gur[MVP]

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


                *** Sent via Developersdex http://www.developersdex.com ***
                Don't just participate in USENET...get rewarded for it!

                Comment

                • Mark Goldin

                  #9
                  Re: server control to store XML

                  Can you populate the XML Island with data on the server?

                  "Natty Gur" <natty@dao2com. com> wrote in message
                  news:ed4XBMQMEH A.128@TK2MSFTNG P09.phx.gbl...[color=blue]
                  > Hi,
                  >
                  > But the client doesn't need to retrieve the data again. The client works
                  > against the XML data in the XML Island.
                  >
                  > Natty Gur[MVP]
                  >
                  > blog : http://weblogs.asp.net/ngur
                  > Mobile: +972-(0)58-888377
                  >
                  >
                  > *** Sent via Developersdex http://www.developersdex.com ***
                  > Don't just participate in USENET...get rewarded for it![/color]


                  Comment

                  • Natty Gur

                    #10
                    Re: server control to store XML

                    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


                    *** Sent via Developersdex http://www.developersdex.com ***
                    Don't just participate in USENET...get rewarded for it!

                    Comment

                    Working...