web drive

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

    web drive

    I would like to create a drive like (x:\) when the user logs into the site,
    so the user can save things on the site.
  • Nicholas Paldino [.NET/C# MVP]

    #2
    Re: web drive

    freddy,

    What do you mean by logs onto the site? Are you referring to a web
    site? If this is the case, that is HIGHLY unlikely. First, you would have
    to expose your machine to whatever network was attaching to it. Second, you
    would need a managed control with unmanaged code permissions, or an active x
    control to perform the mapping. Last, you couldn't just assign it to x
    because x might already be taken.

    If you want to transfer files from to a website, then you will have to
    deal with uploading them through a form.

    Hope this helps.


    --
    - Nicholas Paldino [.NET/C# MVP]
    - mvp@spam.guard. caspershouse.co m

    "freddy" <freddy@discuss ions.microsoft. com> wrote in message
    news:443DB570-68AB-403F-BFBC-397E80FDD9DB@mi crosoft.com...[color=blue]
    >I would like to create a drive like (x:\) when the user logs into the site,
    > so the user can save things on the site.[/color]


    Comment

    • carion1

      #3
      Re: web drive

      Use FTP.

      --

      Derek Davis
      ddavis76@gmail. com

      "freddy" <freddy@discuss ions.microsoft. com> wrote in message
      news:443DB570-68AB-403F-BFBC-397E80FDD9DB@mi crosoft.com...[color=blue]
      >I would like to create a drive like (x:\) when the user logs into the site,
      > so the user can save things on the site.[/color]


      Comment

      • Jon Skeet [C# MVP]

        #4
        Re: web drive

        freddy <freddy@discuss ions.microsoft. com> wrote:[color=blue]
        > I would like to create a drive like (x:\) when the user logs into the site,
        > so the user can save things on the site.[/color]

        Do you mean you want a web page to alter the file system on the client
        machine? If you could persuade your users to accept a hideously low
        security zone, you might be able to do it with an ActiveX control, but
        I don't think you could sensibly do it in C#, and I don't think it's
        really a good idea anyway.

        --
        Jon Skeet - <skeet@pobox.co m>
        http://www.pobox.com/~skeet Blog: http://www.msmvps.com/jon.skeet
        If replying to the group, please do not mail me too

        Comment

        Working...