How do access client system file from FTP Server?

Last post 01-02-2009 12:57 AM by Thomas Sun – MSFT. 3 replies.

Sort Posts:

  • How do access client system file from FTP Server?

    12-29-2008, 7:56 AM
    • Member
      1 point Member
    • logosoftv
    • Member since 10-21-2008, 6:24 AM
    • India
    • Posts 24

    Hi friends,

    i need to access flash file from the FTP remote server.
    but the flash file should be in client system.
    is there any possibilities for this....
    if anyone can tell me the solutions....

     

    Advance Wishes....

    Loganath.V
    9952070572
  • Re: How do access client system file from FTP Server?

    12-29-2008, 10:15 AM

    No way at all, I'm afraid.  FTP servers are simply not capable of initiating contact with and communicating with client systems.

     

    Regards Mike
    [MVP - ASP/ASP.NET]
    My site    Please help - URGENT!!!    What ASP.NET can and can't do
  • How do access client system file from FTP Server?

    12-30-2008, 12:49 AM
    • Member
      1 point Member
    • logosoftv
    • Member since 10-21-2008, 6:24 AM
    • India
    • Posts 24

    My problem is ,

    I've a Video file with 7MP file size. That file should be play while the website is loading. I put the Video file at my FTP, But it's a time consuming fact in the Page Loading. That's why I need to access the Video file from WebSite Administrator System. Is there any possibilities to make this.

    Loganath.V
    9952070572
  • Re: How do access client system file from FTP Server?

    01-02-2009, 12:57 AM
    Answer

    Hi,

    Based on my understanding, you want to access the file that exists in remote FTP server from your ASP.NET website, right?

    If so, we can use FtpWebRequest class (http://wiki.asp.net/page.aspx/283/ftpwebrequest/) to download this file from FTP server and then send it to client.

    To display this flash while page is loading, we can use Div tags to contain flash, and use JavaScript to change its display attribute to none while page is loaded.

    For example, see

    <body onload="document.getElementById('flashContainer').style.display = 'none';">

    <div id="flashContainer" style="display:block">Play Flash. . .</div>

     

    I look forward to hearing from you.

    Thomas Sun
    Microsoft Online Community Support

    Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question.
Page 1 of 1 (4 items)