read file from url on different server

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Shailesh Patel

    read file from url on different server

    Hi,
    How do I write on my browser file located on another server with asp.net?
    I am using AJAX javascript but I get access denied error.

    Any clue is appreciated.

    Thank you in advance.

    Shailesh


  • =?Utf-8?B?UGV0ZXIgQnJvbWJlcmcgW0MjIE1WUF0=?=

    #2
    RE: read file from url on different server

    This has nothing to do with ASP.NET particularly. Cross - domain security
    policy makes it impossible to write from a client page in a browser to a file
    at the server.
    You would need to have a receiving "page" on the target machine that would
    be able to process a POST of the file.
    -- Peter
    Site: http://www.eggheadcafe.com
    UnBlog: http://petesbloggerama.blogspot.com
    Short Urls & more: http://ittyurl.net


    "Shailesh Patel" wrote:
    Hi,
    How do I write on my browser file located on another server with asp.net?
    I am using AJAX javascript but I get access denied error.
    >
    Any clue is appreciated.
    >
    Thank you in advance.
    >
    Shailesh
    >
    >
    >

    Comment

    Working...