upload system with ajax/java

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Jason7899
    New Member
    • Mar 2008
    • 59

    upload system with ajax/java

    hi,
    there is some upload system that can convert a jpg,bmp files into a jpg
    file?
    i have seen a system working in java that can see the folders of my computer
    and have the ability to drag the files to a listview
    any one know something like that?
    thanks for your help
    :)
  • acoder
    Recognized Expert MVP
    • Nov 2006
    • 16032

    #2
    This won't be possible with JavaScript, but you can use a server-side script for the conversion. Also note that JavaScript generally doesn't allow access to local files with default settings.

    Comment

    • Jason7899
      New Member
      • Mar 2008
      • 59

      #3
      hi,
      i have seen a system working but dont´use javascript they use java
      there is a link of the site for that you can see.
      http://us.foto.com/default.asp you need register for use the webalbum prints but
      there is very easy to register.
      thanks for your attention :)

      Comment

      • acoder
        Recognized Expert MVP
        • Nov 2006
        • 16032

        #4
        By Java, do you mean a Java applet?

        Comment

        • Jason7899
          New Member
          • Mar 2008
          • 59

          #5
          yes that´s right :)
          Java applet

          Comment

          • acoder
            Recognized Expert MVP
            • Nov 2006
            • 16032

            #6
            Normally, JavaScript doesn't allow access to local files. However, you could use a specific solution for a specific browser, e.g. ActiveX for IE, XUL for Firefox.

            The simpler, cross-browser solution would be to use an input file element for upload and carry out the conversion using server-side code.

            Comment

            Working...