CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2
  1. #1
    Join Date
    Sep 2004
    Posts
    5

    How to create a statusbar in JSP

    Is there any easy way to constructe a statusbar of a download in jsp?

    Have a server/client application, when downloading data from client i would like to have a statusbar that indicates how much of the data that have been transfered. Using a BufferedInputStream where i read package of bytes.

    Thanks in advance!!!

  2. #2
    Join Date
    May 2004
    Posts
    45

    Re: How to create a statusbar in JSP

    a) You could write an applet or an ActiveX Control that downloads the data sent by the JSP, and make the applet show the status bar.
    b) Don't bother about it, simply set the content-length correctly (in practice it could be very difficult to do!), and leave the task of showing the percentage of bytes downloaded to the browser.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured