restrict file upload size

Discussion in 'JavaScript' started by digitalpoint187, Jun 14, 2011.

  1. #1
    Hello all,

    In JSP / HTML, I want to restrict the size of file being uploaded.

    <input type="file" name="myfile"/>

    If the user trying to upload a file size bigger than some value say 5MB, i want to give mesage to the user. I don't want to wait till the file gets uploaded to server and then validate the file size. I am looking for client side validation. Can it be done using scripting language or any other way?

    Need a solution for this in Internet Explorer. I got a solution using ActiveX control:
    var myFSO = new ActiveXObject("Scripting.FileSystemObject");
    var filepath = document.getElementById('myfile').value;
    var thefile = myFSO.getFile(filepath);
    var sizeInBytes = thefile.size;


    But ActiveX controls are not allowed in our application. Is there any alternative way for this?

    Please suggest the possible ways.. Thanks!!


    ----
    Poli reddy
     
    digitalpoint187, Jun 14, 2011 IP
  2. Jan Novak

    Jan Novak Peon

    Messages:
    121
    Likes Received:
    5
    Best Answers:
    1
    Trophy Points:
    0
    #2
    Jan Novak, Jun 14, 2011 IP
  3. digitalpoint187

    digitalpoint187 Peon

    Messages:
    5
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #3
    is applet a solution for this??



     
    digitalpoint187, Jun 14, 2011 IP
  4. digitalpoint187

    digitalpoint187 Peon

    Messages:
    5
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #4
    Thanks Novak. But I cant use Flash becuase it forces IE client to install Flash Player 10+ which is not possible for our application. Could u suggest any other way? Is it possible using Applets?
     
    digitalpoint187, Jun 14, 2011 IP
  5. Jan Novak

    Jan Novak Peon

    Messages:
    121
    Likes Received:
    5
    Best Answers:
    1
    Trophy Points:
    0
    #5
    Jan Novak, Jun 15, 2011 IP
  6. digitalpoint187

    digitalpoint187 Peon

    Messages:
    5
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #6
    Thanks a lot Novak.. It worked.. Now I am able to upload bigsize file and get it validated within seconds.. Thanks again!!
     
    digitalpoint187, Jun 19, 2011 IP
  7. digitalpoint187

    digitalpoint187 Peon

    Messages:
    5
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #7
    thanks to the forum too!!
     
    digitalpoint187, Jun 19, 2011 IP