how to load client-side xml file?

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • memiller@westernsurety.com

    #1

    how to load client-side xml file?

    I know this generally not recommended, but I'm working in the confines
    of the company's intranet.

    Goal: permit managers to load an XML file from thier PC into an
    intranet ASP.NET webpage where validation and data submit will take
    place. I have the page written that allows the user to select a
    file. I'm hitting a wall when, after selecting the file, trying to
    open a new page and inserting the XML into the page. From there I can
    start validating the data. I've been tried to using
    Response.Binary Write but it appears that will only work with server-
    side files. I also haven't had much luck in trying to open the file
    with Javascript. Any suggestions?
  • David Mark

    #2
    Re: how to load client-side xml file?

    On Oct 13, 5:42 pm, "memil...@weste rnsurety.com"
    <memil...@weste rnsurety.comwro te:
    I know this generally not recommended, but I'm working in the confines
    of the company's intranet.
    That would depend on the company and Intranet.
    >
    Goal: permit managers to load an XML file from thier PC into an
    intranet ASP.NET webpage where validation and data submit will take
    ASP.NET is OT here.
    place.  I have the page written that allows the user to select a
    file.  I'm hitting a wall when, after selecting the file, trying to
    open a new page and inserting the XML into the page.  From there I can
    start validating the data.  I've been tried to using
    Response.Binary Write but it appears that will only work with server-
    side files.  I also haven't had much luck in trying to open the file
    with Javascript.  Any suggestions?
    Post some (if not all) of the suspect (client side) code?

    Comment

    • Laser Lips

      #3
      Re: how to load client-side xml file?

      On Oct 13, 10:50 pm, David Mark <dmark.cins...@ gmail.comwrote:
      On Oct 13, 5:42 pm, "memil...@weste rnsurety.com"
      >
      <memil...@weste rnsurety.comwro te:
      I know this generally not recommended, but I'm working in the confines
      of the company's intranet.
      >
      That would depend on the company and Intranet.
      >
      >
      >
      Goal: permit managers to load an XML file from thier PC into an
      intranet ASP.NET webpage where validation and data submit will take
      >
      ASP.NET is OT here.
      >
      place.  I have the page written that allows the user to select a
      file.  I'm hitting a wall when, after selecting the file, trying to
      open a new page and inserting the XML into the page.  From there I can
      start validating the data.  I've been tried to using
      Response.Binary Write but it appears that will only work with server-
      side files.  I also haven't had much luck in trying to open the file
      with Javascript.  Any suggestions?
      >
      Post some (if not all) of the suspect (client side) code?
      You don't / CANT open files with javascript...Yo u use the browser to
      do that. You can't let javascript handle an XML file until it's on a
      server somewhere. Then you can easily play with the file in
      JavaScript. But that's all you can do with it. You can't CHANGE the
      file with JavaScript or save it to another file. JavaScript sits in a
      browser and is limited to it's sandbox. Go and read what JavaScript
      Is!

      Comment

      • Evertjan.

        #4
        Re: how to load client-side xml file?

        Laser Lips wrote on 14 okt 2008 in comp.lang.javas cript:
        You don't / CANT open files with javascript...Yo u use the browser to
        do that. You can't let javascript handle an XML file until it's on a
        server somewhere. Then you can easily play with the file in
        JavaScript. But that's all you can do with it. You can't CHANGE the
        file with JavaScript or save it to another file. JavaScript sits in a
        browser and is limited to it's sandbox. Go and read what JavaScript
        Is!
        >
        Javascript can be used by Wscript or Cscript and on the server under ASP.

        --
        Evertjan.
        The Netherlands.
        (Please change the x'es to dots in my emailaddress)

        Comment

        • Tim Williams

          #5
          Re: how to load client-side xml file?

          "Evertjan." <exjxw.hannivoo rt@interxnl.net wrote in message
          news:Xns9B37E0F A5543Ceejj99@19 4.109.133.242.. .
          Laser Lips wrote on 14 okt 2008 in comp.lang.javas cript:
          >
          >You don't / CANT open files with javascript...Yo u use the browser to
          >do that. You can't let javascript handle an XML file until it's on a
          >server somewhere. Then you can easily play with the file in
          >JavaScript. But that's all you can do with it. You can't CHANGE the
          >file with JavaScript or save it to another file. JavaScript sits in a
          >browser and is limited to it's sandbox. Go and read what JavaScript
          >Is!
          >>
          >
          Javascript can be used by Wscript or Cscript and on the server under ASP.
          >
          ....or in an HTA (on Win)

          Tim


          Comment

          • dhtml

            #6
            Re: how to load client-side xml file?

            Tim Williams wrote:
            "Evertjan." <exjxw.hannivoo rt@interxnl.net wrote in message
            news:Xns9B37E0F A5543Ceejj99@19 4.109.133.242.. .
            >Laser Lips wrote on 14 okt 2008 in comp.lang.javas cript:
            >>
            >>You don't / CANT open files with javascript...Yo u use the browser to
            Wrong answer.
            >>>
            >Javascript can be used by Wscript or Cscript and on the server under ASP.
            >>
            >
            ...or in an HTA (on Win)
            >
            Or in a web browser, which might actually be able to read the file.

            Garrett
            Tim
            >
            >

            --
            comp.lang.javas cript FAQ <URL: http://jibbering.com/faq/ >

            Comment

            Working...