Gets or sets a value indicating whether the progress bar is displayed. The UploadModule must be installed to use this feature.
Example Code- <?php require_once "phpuploader/include_phpuploader.php" ?>
- <html>
- <body>
- <form id="form1" method="POST">
- <?php
- $uploader=new PhpUploader();
- $uploader->Name="myuploader";
- $uploader->ShowProgressBar=true;
- $uploader->Render();
- ?>
- </form>
- </body>
- </html>